Merge pull request #2503 from woopstar/kubelet-fix-1

Fix duplicate --proxy-client-cert-file and --proxy-client-key-file
This commit is contained in:
Andreas Krüger 2018-03-21 10:03:31 +01:00 committed by GitHub
commit ff2b8e5e60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View file

@ -57,8 +57,6 @@ spec:
{% endif %}
- --tls-cert-file={{ kube_cert_dir }}/apiserver.pem
- --tls-private-key-file={{ kube_cert_dir }}/apiserver-key.pem
- --proxy-client-cert-file={{ kube_cert_dir }}/apiserver.pem
- --proxy-client-key-file={{ kube_cert_dir }}/apiserver-key.pem
{% if kube_token_auth|default(true) %}
- --token-auth-file={{ kube_token_dir }}/known_tokens.csv
{% endif %}

View file

@ -128,7 +128,7 @@ kube_apiserver_insecure_bind_address: 127.0.0.1
kube_apiserver_insecure_port: 8080
# Aggregator
kube_api_aggregator_routing: true
kube_api_aggregator_routing: false
# Path used to store Docker data
docker_daemon_graph: "/var/lib/docker"