Skip to content

Instantly share code, notes, and snippets.

@adrianchifor
Created May 29, 2017 20:39
Show Gist options
  • Save adrianchifor/652346c2e790af2dea85f31d138ffecc to your computer and use it in GitHub Desktop.
Save adrianchifor/652346c2e790af2dea85f31d138ffecc to your computer and use it in GitHub Desktop.
kops setup example
kops create cluster \
--cloud=aws \
--admin-access=PRIVATE_VPN_CIDR \
--associate-public-ip=false \
--vpc=VPC_ID \
--network-cidr=VPC_CIDR \
--dns-zone=R53_HOSTED_ZONE_ID \
--master-zones=eu-west-1a,eu-west-1b,eu-west-1c \
--zones=eu-west-1a,eu-west-1b,eu-west-1c \
--node-count=3 \
--networking=flannel \
--name=dev.k8s.example.com
kops edit cluster dev.k8s.example.com
kops update cluster dev.k8s.example.com \
--target=terraform
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment