kops create cluster --zones us-west-2a --master-zones us-west-2a --master-size t2.large --node-size t2.large --name becluster.k8s.local --state s3://<s3-bucket-name> --yes
Where,
- s3-bucket-name is the name of the S3 storage created earlier.
- becluster.k8s.local is the name of the cluster being created. Use
k8s.local prefix to identify a gossip-based Kubernetes cluster and you can skip the DNS configuration.
For more information on the
kops create cluster command either use the
help parameter or refer to the
kops tool documentation at
https://github.com/kubernetes/kops/tree/master/docs.