mirror of https://github.com/kubernetes/kops.git
Add example in cluster_spec.md to customize kube-apiserver clientCAFile
This commit is contained in:
parent
dc03028e5d
commit
be2a146fe6
|
@ -429,6 +429,16 @@ spec:
|
|||
serviceNodePortRange: 30000-33000
|
||||
```
|
||||
|
||||
### Customize client-ca file
|
||||
|
||||
This value is passed as `--client-ca-file` for `kube-apiserver`. (default: `/srv/kubernetes/ca.crt`)
|
||||
|
||||
```yaml
|
||||
spec:
|
||||
kubeAPIServer:
|
||||
clientCAFile: /srv/kubernetes/client-ca.crt
|
||||
```
|
||||
|
||||
### Disable Basic Auth
|
||||
|
||||
Support for basic authentication was removed in Kubernetes 1.19. For previous versions
|
||||
|
|
Loading…
Reference in New Issue