Forrest logo
back to context overview

kubeadm

List of commands for kubeadm:

  • kubeadm:tldr:3aa9e kubeadm: Bootstrap a Kubernetes worker node and join it to a cluster.
    $ kubeadm join --token ${token}
    try on your machine
    explain this command
  • kubeadm:tldr:3c474 kubeadm: Create a new bootstrap token with a TTL of 12 hours.
    $ kubeadm token create --ttl ${12h0m0s}
    try on your machine
    explain this command
  • kubeadm:tldr:6e373 kubeadm: Create a Kubernetes master node.
    $ kubeadm init
    try on your machine
    explain this command
  • kubeadm:tldr:6f457 kubeadm: Revert changes made to the host by 'kubeadm init' or 'kubeadm join'.
    $ kubeadm reset
    try on your machine
    explain this command
  • kubeadm:tldr:cd3b5 kubeadm: Check if the Kubernetes cluster is upgradeable and which versions are available.
    $ kubeadm upgrade plan
    try on your machine
    explain this command
  • kubeadm:tldr:d01cb kubeadm: View the kubeadm ConfigMap containing the cluster's configuration.
    $ kubeadm config view
    try on your machine
    explain this command
  • kubeadm:tldr:e8ac9 kubeadm: Upgrade Kubernetes cluster to a specified version.
    $ kubeadm upgrade apply ${version}
    try on your machine
    explain this command
back to context overview