kubeadm join

When joining a kubeadm initialized cluster, we need to establishbidirectional trust. This is split into discovery (having the Nodetrust the Kubernetes Control Plane) and TLS bootstrap (having theKubernetes Control Plane trust the Node).

There are 2 main schemes for discovery. The first is to use a sharedtoken along with the IP address of the API server. The second is toprovide a file - a subset of the standard kubeconfig file. This filecan be a local file or downloaded via an HTTPS URL. The forms arekubeadm join –discovery-token abcdef.1234567890abcdef 1.2.3.4:6443,kubeadm join –discovery-file path/to/file.conf, or kubeadm join–discovery-file https://url/file.conf. Only one form can be used. Ifthe discovery information is loaded from a URL, HTTPS must be used.Also, in that case the host installed CA bundle is used to verifythe connection.

If you use a shared token for discovery, you should also pass the–discovery-token-ca-cert-hash flag to validate the public key of theroot certificate authority (CA) presented by the Kubernetes Control Plane.The value of this flag is specified as “<hash-type>:<hex-encoded-value>”,where the supported hash type is “sha256”. The hash is calculated overthe bytes of the Subject Public Key Info (SPKI) object (as in RFC7469).This value is available in the output of “kubeadm init” or can becalculated using standard tools. The –discovery-token-ca-cert-hash flagmay be repeated multiple times to allow more than one public key.

If you cannot know the CA public key hash ahead of time, you can passthe –discovery-token-unsafe-skip-ca-verification flag to disable thisverification. This weakens the kubeadm security model since other nodescan potentially impersonate the Kubernetes Control Plane.

The TLS bootstrap mechanism is also driven via a shared token. This isused to temporarily authenticate with the Kubernetes Control Plane to submit acertificate signing request (CSR) for a locally created key pair. Bydefault, kubeadm will set up the Kubernetes Control Plane to automaticallyapprove these signing requests. This token is passed in with the–tls-bootstrap-token abcdef.1234567890abcdef flag.

Often times the same token is used for both parts. In this case, the–token flag can be used instead of specifying each token individually.

The “join [api-server-endpoint]” command executes the following phases:

Options

—rootfs string
[EXPERIMENTAL] The path to the 'real' host root filesystem.

The join workflow

kubeadm join bootstraps a Kubernetes worker node or a control-plane node and adds it to the cluster.This action consists of the following steps for worker nodes:

  • kubeadm downloads necessary cluster information from the API server.By default, it uses the bootstrap token and the CA key hash to verify theauthenticity of that data. The root CA can also be discovered directly via afile or URL.

  • Once the cluster information is known, kubelet can start the TLS bootstrappingprocess.

The TLS bootstrap uses the shared token to temporarily authenticatewith the Kubernetes API server to submit a certificate signing request (CSR); bydefault the control plane signs this CSR request automatically.

  • Finally, kubeadm configures the local kubelet to connect to the APIserver with the definitive identity assigned to the node.For control-plane nodes additional steps are performed:

  • Downloading certificates shared among control-plane nodes from the cluster(if explicitly requested by the user).

  • Generating control-plane component manifests, certificates and kubeconfig.

  • Adding this node to the ClusterStatus of the kubeadm cluster.

Kubeadm allows you join a node to the cluster in phases using kubeadm join phase.

To view the ordered list of phases and sub-phases you can call kubeadm join —help. The list will be locatedat the top of the help screen and each phase will have a description next to it.Note that by calling kubeadm join all of the phases and sub-phases will be executed in this exact order.

Some phases have unique flags, so if you want to have a look at the list of available options add —help, for example:

  1. kubeadm join phase kubelet-start --help

Similar to the command, kubadm join phase allows you to skip a list of phases using the —skip-phases flag.

  1. sudo kubeadm join --skip-phases=preflight --config=config.yaml

Discovering what cluster CA to trust

The kubeadm discovery has several options, each with security tradeoffs.The right method for your environment depends on how you provision nodes and thesecurity expectations you have about your network and node lifecycles.

Token-based discovery with CA pinning

This is the default mode in kubeadm. In this mode, kubeadm downloadsthe cluster configuration (including root CA) and validates it using the tokenas well as validating that the root CA public key matches the provided hash andthat the API server certificate is valid under the root CA.

The CA key hash has the format sha256:<hex_encoded_hash>. By default, the hash value is returned in the kubeadm join command printed at the end of kubeadm init or in the output of kubeadm token create —print-join-command. It is in a standard format (see RFC7469) and can also be calculated by 3rd party tools or provisioning systems. For example, using the OpenSSL CLI:

  1. openssl x509 -pubkey -in /etc/kubernetes/pki/ca.crt | openssl rsa -pubin -outform der 2>/dev/null | openssl dgst -sha256 -hex | sed 's/^.* //'

Example kubeadm join commands:

For worker nodes:

  1. kubeadm join --discovery-token abcdef.1234567890abcdef --discovery-token-ca-cert-hash sha256:1234..cdef 1.2.3.4:6443

For control-plane nodes:

You can also call join for a control-plane node with —certificate-key to copy certificates to this node,if the kubeadm init command was called with —upload-certs.

Advantages:

  • Allows bootstrapping nodes to securely discover a root of trust for thecontrol-plane node even if other worker nodes or the network are compromised.

  • Convenient to execute manually since all of the information required fitsinto a single kubeadm join command that is easy to copy and paste.

Disadvantages:

  • The CA hash is not normally known until the control-plane node has been provisioned,which can make it more difficult to build automated provisioning tools thatuse kubeadm. By generating your CA in beforehand, you may workaround thislimitation.

Token-based discovery without CA pinning

This mode relies only on the symmetric token to sign(HMAC-SHA256) the discovery information that establishes the root of trust forthe control-plane. To use the mode the joining nodes must skip the hash validation of theCA public key, using . You should considerusing one of the other modes if possible.

Example kubeadm join command:

  1. kubeadm join --token abcdef.1234567890abcdef --discovery-token-unsafe-skip-ca-verification 1.2.3.4:6443

Advantages:

  • Still protects against many network-level attacks.

  • The token can be generated ahead of time and shared with the control-plane node andworker nodes, which can then bootstrap in parallel without coordination. Thisallows it to be used in many provisioning scenarios.

Disadvantages:

  • If an attacker is able to steal a bootstrap token via some vulnerability,they can use that token (along with network-level access) to impersonate thecontrol-plane node to other bootstrapping nodes. This may or may not be an appropriatetradeoff in your environment.

File or HTTPS-based discovery

This provides an out-of-band way to establish a root of trust between the control-plane nodeand bootstrapping nodes. Consider using this mode if you are building automated provisioningusing kubeadm. The format of the discovery file is a regular Kubernetes file.

In case the discovery file does not contain credentials, the TLS discovery token will be used.

Example kubeadm join commands:

Advantages:

  • Allows bootstrapping nodes to securely discover a root of trust for thecontrol-plane node even if the network or other worker nodes are compromised.

Disadvantages:

  • Requires that you have some way to carry the discovery information fromthe control-plane node to the bootstrapping nodes. If the discovery file contains credentialsyou must keep it secret and transfer it over a secure channel. This might be possible with yourcloud provider or provisioning tool.

The defaults for kubeadm may not work for everyone. This section documents how to tighten up a kubeadm installationat the cost of some usability.

Turning off auto-approval of node client certificates

By default, there is a CSR auto-approver enabled that basically approves any client certificate requestfor a kubelet when a Bootstrap Token was used when authenticating. If you don’t want the cluster toautomatically approve kubelet client certs, you can turn it off by executing this command:

  1. kubectl delete clusterrolebinding kubeadm:node-autoapprove-bootstrap

After that, kubeadm join will block until the admin has manually approved the CSR in flight:

  1. kubectl get csr

The output is similar to this:

  1. NAME AGE REQUESTOR CONDITION
  2. node-csr-c69HXe7aYcqkS1bKmH4faEnHAWxn6i2bHZ2mD04jZyQ 18s system:bootstrap:878f07 Pending
  1. kubectl certificate approve node-csr-c69HXe7aYcqkS1bKmH4faEnHAWxn6i2bHZ2mD04jZyQ

The output is similar to this:

    The output is similar to this:

    1. NAME AGE REQUESTOR CONDITION
    2. node-csr-c69HXe7aYcqkS1bKmH4faEnHAWxn6i2bHZ2mD04jZyQ 1m system:bootstrap:878f07 Approved,Issued

    This forces the workflow that kubeadm join will only succeed if kubectl certificate approve has been run.

    Turning off public access to the cluster-info ConfigMap

    In order to achieve the joining flow using the token as the only piece of validation information, aConfigMap with some data needed for validation of the control-plane node’s identity is exposed publicly bydefault. While there is no private data in this ConfigMap, some users might wish to turnit off regardless. Doing so will disable the ability to use the —discovery-token flag of thekubeadm join flow. Here are the steps to do so:

    • Fetch the cluster-info file from the API Server:
    1. kubectl -n kube-public get cm cluster-info -o yaml | grep "kubeconfig:" -A11 | grep "apiVersion" -A10 | sed "s/ //" | tee cluster-info.yaml

    The output is similar to this:

    1. apiVersion: v1
    2. clusters:
    3. - cluster:
    4. certificate-authority-data: <ca-cert>
    5. server: https://<ip>:<port>
    6. name: ""
    7. contexts: []
    8. current-context: ""
    9. preferences: {}
    10. users: []
    • Use the cluster-info.yaml file as an argument to kubeadm join —discovery-file.

    • Turn off public access to the cluster-info ConfigMap:

    1. kubectl -n kube-public delete rolebinding kubeadm:bootstrap-signer-clusterinfo

    These commands should be run after kubeadm init but before kubeadm join.

    Using kubeadm join with a configuration file

    It’s possible to configure kubeadm join with a configuration file instead of commandline flags, and some more advanced features may only be available asconfiguration file options. This file is passed using the —config flag and it mustcontain a JoinConfiguration structure.

    To print the default values of JoinConfiguration run the following command:

    For details on individual fields in JoinConfiguration see the godoc.

    • to bootstrap a Kubernetes control-plane node
    • kubeadm token to manage tokens for kubeadm join
    • to revert any changes made to this host by or kubeadm join

    Feedback

    Was this page helpful?

    Thanks for the feedback. If you have a specific, answerable question about how to use Kubernetes, ask it on.Open an issue in the GitHub repo if you want toreport a problemor.