exec credential provider: cluster info details
Signed-off-by: Andrew Keesler <akeesler@vmware.com>
This commit is contained in:
@@ -882,11 +882,20 @@ users:
|
|||||||
On Fedora: dnf install example-client-go-exec-plugin
|
On Fedora: dnf install example-client-go-exec-plugin
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
||||||
|
# Whether or not to provide cluster information, which could potentially contain
|
||||||
|
# very large CA data, to this exec plugin as a part of the KUBERNETES_EXEC_INFO
|
||||||
|
# environment variable.
|
||||||
|
provideClusterInfo: true
|
||||||
clusters:
|
clusters:
|
||||||
- name: my-cluster
|
- name: my-cluster
|
||||||
cluster:
|
cluster:
|
||||||
server: "https://172.17.4.100:6443"
|
server: "https://172.17.4.100:6443"
|
||||||
certificate-authority: "/etc/kubernetes/ca.pem"
|
certificate-authority: "/etc/kubernetes/ca.pem"
|
||||||
|
extensions:
|
||||||
|
- name: client.authentication.k8s.io/exec # reserved extension name for per cluster exec config
|
||||||
|
extension:
|
||||||
|
some-config-per-cluster: config-data # arbitrary config
|
||||||
contexts:
|
contexts:
|
||||||
- name: my-cluster
|
- name: my-cluster
|
||||||
context:
|
context:
|
||||||
@@ -968,3 +977,26 @@ RFC3339 timestamp. Presence or absence of an expiry has the following impact:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The plugin can optionally be called with an environment variable, `KUBERNETES_EXEC_INFO`,
|
||||||
|
that contains information about the cluster for which this plugin is obtaining
|
||||||
|
credentials. This information can be used to perform cluster-specific credential
|
||||||
|
acquisition logic. In order to enable this behavior, the `provideClusterInfo` field must
|
||||||
|
be set on the exec user field in the
|
||||||
|
[kubeconfig](/docs/concepts/configuration/organize-cluster-access-kubeconfig/). Here is an
|
||||||
|
example of the aforementioned `KUBERNETES_EXEC_INFO` environment variable.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"apiVersion": "client.authentication.k8s.io/v1beta1",
|
||||||
|
"kind": "ExecCredential",
|
||||||
|
"spec": {
|
||||||
|
"cluster": {
|
||||||
|
"server": "https://172.17.4.100:6443",
|
||||||
|
"certificate-authority-data": "LS0t...",
|
||||||
|
"config": {
|
||||||
|
"some-config-per-cluster": "config-data"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user