Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@brainstorm
Last active March 21, 2017 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brainstorm/b03e2f359ec4ec56850225000cc40ccb to your computer and use it in GitHub Desktop.
Save brainstorm/b03e2f359ec4ec56850225000cc40ccb to your computer and use it in GitHub Desktop.
Kubernetes UMCCR cluster via KOPS
#!/bin/sh
kops create cluster \
--node-count 1 \
--zones ap-southeast-2a \
--master-zones ap-southeast-2a \
--dns-zone umccr.nopcode.org \
--node-size t2.small \
--master-size t2.small \
--topology private \
--networking calico \
--bastion \
cluster.umccr.nopcode.org
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment