You can now edit the vars.sh file we created earlier and set the appropriate values using your favorite command-line text editor. You will also need to create the bucket where k8s stores cluster information.
Once you have done this, you can bring up your Kubernetes cluster:
source vars.sh
./cluster-up.sh
KOPS is now interacting with Kubernetes via kubectl to spin up the AWS resources that will run your cluster and then configure K8s itself on these same resources. You will need to verify that your cluster has been brought up successfully before proceeding:
kops validate cluster
Validating cluster hodlgo.k8s.local
INSTANCE GROUPS
NAME ROLE MACHINETYPE MIN MAX SUBNETS
master-ap-southeast-2a Master c4.large 1 1 ap-southeast-2
nodes Node t2.medium 2 2 ap-southeast-2
NODE STATUS
NAME ROLE READY
ip-172-20-35-114.ec2.internal node True
ip-172-20-49-22.ec2.internal...