Improving your setup for Kubernetes application maintenance
In order to deploy and maintain Spinnaker, we need to be able to talk to the Kubernetes cluster from our local workstation. We also want to be able to use Secure Sockets Layer (SSL)-protected communications to Kubernetes-hosted resources. Let's take this step by step in order to prepare your local workstation and AWS account for more advanced deployments.
Managing the EKS cluster from your local workstation
In order to make it easier to administer the EKS cluster and work with it, you will want to set up your local workstation to talk to the cluster. In the previous chapter, we set up the AWS CLI with an AWS IAM administrator account and then used it to set up an EKS cluster. We will build on that in this chapter to make sure that we can efficiently manage the cluster and the applications in it from our local workstation.
Follow the instructions here on your local workstation to get kubectl
and the rest of the...