Skip to content

Commit

Permalink
Documentation/tls: add aggregated CA
Browse files Browse the repository at this point in the history
This commit ports the documentation that was originally part of
coreos/tectonic-installer#2850.
  • Loading branch information
squat committed Feb 6, 2018
1 parent 43e20cb commit 15f641d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Documentation/tls/tls-kube.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@ Configure the user provided certificate paths in your platform, i.e. `platforms/
module "kube_certs" {
source = "../../modules/tls/kube/user-provided"
ca_cert_pem_path = "/path/to/ca.crt"
kubelet_cert_pem_path = "/path/to/kubelet.crt"
kubelet_key_pem_path = "/path/to/kubelet.key"
apiserver_cert_pem_path = "/path/to/apiserver.crt"
apiserver_key_pem_path = "/path/to/apiserver.key"
aggregator_ca_cert_pem_path = "/path/to/aggregator-ca.crt"
ca_cert_pem_path = "/path/to/ca.crt"
kubelet_cert_pem_path = "/path/to/kubelet.crt"
kubelet_key_pem_path = "/path/to/kubelet.key"
apiserver_cert_pem_path = "/path/to/apiserver.crt"
apiserver_key_pem_path = "/path/to/apiserver.key"
apiserver_proxy_cert_pem_path = "/path/to/apiserver-proxy.crt"
apiserver_proxy_key_pem_path = "/path/to/apiserver-proxy.key"
}
```

Expand Down

0 comments on commit 15f641d

Please sign in to comment.