.kube config: Difference between revisions
Jump to navigation
Jump to search
(→Users) |
No edit summary |
||
Line 23: | Line 23: | ||
This section contain definitions of users that might have different levels of permissions for each cluster. Each user definition has a friendly name, a username and a set of credentials. | This section contain definitions of users that might have different levels of permissions for each cluster. Each user definition has a friendly name, a username and a set of credentials. | ||
<syntaxhighlight lang='yaml'> | |||
users: | |||
- name: docker-desktop | |||
user: | |||
client-certificate-data: LS0tL...LS0K | |||
client-key-data: LS0tL...tLQo= | |||
</syntaxhighlight> | |||
=Contexts= | =Contexts= |
Revision as of 00:03, 22 August 2019
Internal
Overview
$HOME/.kube/config is kubectl configuration file. It contains definitions for clusters, users and contexts.
Clusters
The section contains the definition of one or more clusters. Each cluster definition has a name, certificate info and the API server's endpoint.
clusters:
- cluster:
certificate-authority-data: LS0tLS1...tLQo=
server: https://kubernetes.docker.internal:6443
name: docker-desktop
Users
This section contain definitions of users that might have different levels of permissions for each cluster. Each user definition has a friendly name, a username and a set of credentials.
users:
- name: docker-desktop
user:
client-certificate-data: LS0tL...LS0K
client-key-data: LS0tL...tLQo=