Update 13-kube-apiserver-to-kubelet.md

Adding refernce for cluster role and cluster bindings from kubernetes.io
pull/584/head
rahulsoni43 2019-11-19 10:13:57 +05:30 committed by GitHub
parent 4fe0ff1921
commit 4af6d2bbf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,7 @@ rules:
- "*" - "*"
EOF EOF
``` ```
Reference: https://v1-12.docs.kubernetes.io/docs/reference/access-authn-authz/rbac/#role-and-clusterrole
The Kubernetes API Server authenticates to the Kubelet as the `kubernetes` user using the client certificate as defined by the `--kubelet-client-certificate` flag. The Kubernetes API Server authenticates to the Kubelet as the `kubernetes` user using the client certificate as defined by the `--kubelet-client-certificate` flag.
@ -52,5 +53,6 @@ subjects:
name: kube-apiserver name: kube-apiserver
EOF EOF
``` ```
Reference: https://v1-12.docs.kubernetes.io/docs/reference/access-authn-authz/rbac/#rolebinding-and-clusterrolebinding
Next: [DNS Addon](14-dns-addon.md) Next: [DNS Addon](14-dns-addon.md)