mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-26 07:26:09 -03:30
add direct path for cert in AWS with RHEL family
This commit is contained in:
@@ -105,6 +105,11 @@ spec:
|
|||||||
- mountPath: {{ etcd_cert_dir }}
|
- mountPath: {{ etcd_cert_dir }}
|
||||||
name: etcd-certs
|
name: etcd-certs
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
{% if cloud_provider == 'aws' and ansible_os_family == 'RedHat' %}
|
||||||
|
- mountPath: /etc/ssl/certs/ca-bundle.crt
|
||||||
|
name: rhel-ca-bundle
|
||||||
|
readOnly: true
|
||||||
|
{% endif %}
|
||||||
volumes:
|
volumes:
|
||||||
- hostPath:
|
- hostPath:
|
||||||
path: {{ kube_config_dir }}
|
path: {{ kube_config_dir }}
|
||||||
@@ -115,3 +120,8 @@ spec:
|
|||||||
- hostPath:
|
- hostPath:
|
||||||
path: {{ etcd_cert_dir }}
|
path: {{ etcd_cert_dir }}
|
||||||
name: etcd-certs
|
name: etcd-certs
|
||||||
|
{% if cloud_provider == 'aws' and ansible_os_family == 'RedHat' %}
|
||||||
|
- hostPath:
|
||||||
|
path: /etc/ssl/certs/ca-bundle.crt
|
||||||
|
name: rhel-ca-bundle
|
||||||
|
{% endif %}
|
||||||
Reference in New Issue
Block a user