KubeConfig
Understand how the kubeconfig file works in Kubernetes.
Concept & Usage of kubeconfig
The kubeconfig file is a configuration file used to configure access to Kubernetes clusters. It is used to specify the cluster, user, and context information required to connect to a Kubernetes cluster.
Let me give you a scenario. When you do not have a kubeconfig file, you can still access the Kubernetes cluster using the kubectl
command, but you have to provide the authentication details every time you run a command. This is not a good practice and it is not feasible. So, the kubeconfig file will help in this case by specifying the configuration details into a file. For example, config
.
Method 1: Using the --kubeconfig
flag (not recommended)
Here is an example of a config file looks like, but with this method, you have to specify the config file every time you run a command. So it is not recommended, instead you should use the kubeconfig file.
Method 2: Using the kubeconfig file (recommended)
By default, kubectl
looks for a file named config
in the $HOME/.kube
directory. The config
file has the following structure:
- clusters - information about the Kubernetes cluster, like the server URL, certificate authority, etc.
- contexts - it defines which user account can access which cluster, so you no need to specify the user certificate or server configuration in
kubectl
command. For example, you create a context calleddev@development
that will use thedev
user to access thedevelopment
cluster. - users - user information like the client certificate, client key, etc where the user is the one who is accessing the cluster.
Here are the commands, where you can use to view the kubeconfig configuration:
Now, you can also specify the kubeconfig file as default kubeconfig file by setting the KUBECONFIG
environment variable.
Besides, you can also specify the default context to use by setting the current-context
field in the kubeconfig file.
Of course, you can change the context as well.
Now there is another option for cluster certificate side if you don't want to use certificate-authority
field in the kubeconfig file.
- The
certificate-authority-data
field is the base64-encoded certificate authority data.- Convert the certificate authority file content to base64-encoded format.
cat /etc/kubernetes/pki/ca.crt | base64 -w 0
- You can decode the base64-encoded data using the following command.
echo "<base64-encoded-ca-certificate>" | base64 -d
- Convert the certificate authority file content to base64-encoded format.