System Grab Bag

View all TLDR pages from common (or from all pages)

kops

Create, destroy, upgrade and maintain Kubernetes clusters. More information: https://github.com/kubernetes/kops/.
  • Create a cluster from the configuration specification:
    kops create cluster -f {{cluster_name.yaml}}
  • Create a new ssh public key:
    kops create secret sshpublickey {{key_name}} -i {{~/.ssh/id_rsa.pub}}
  • Export the cluster configuration to the ~/.kube/config file:
    kops export kubecfg {{cluster_name}}
  • Get the cluster configuration as YAML:
    kops get cluster {{cluster_name}} -o yaml
  • Delete a cluster:
    kops delete cluster {{cluster_name}} --yes

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.