Merge pull request #10 from ctrlaltdel/openstack-provider-ssl-fix

Expose /etc/pki from host to kube-apiserver and controller-manager
This commit is contained in:
Lukasz Zajaczkowski
2016-04-29 09:22:47 +02:00
2 changed files with 8 additions and 8 deletions

View File

@@ -168,8 +168,8 @@
{ "name": "etcopenssl", { "name": "etcopenssl",
"mountPath": "/etc/openssl", "mountPath": "/etc/openssl",
"readOnly": true}, "readOnly": true},
{ "name": "etcpkitls", { "name": "etcpki",
"mountPath": "/etc/pki/tls", "mountPath": "/etc/pki",
"readOnly": true}, "readOnly": true},
{ "name": "srvsshproxy", { "name": "srvsshproxy",
"mountPath": "{{srv_sshproxy_path}}", "mountPath": "{{srv_sshproxy_path}}",
@@ -200,9 +200,9 @@
"hostPath": { "hostPath": {
"path": "/etc/openssl"} "path": "/etc/openssl"}
}, },
{ "name": "etcpkitls", { "name": "etcpki",
"hostPath": { "hostPath": {
"path": "/etc/pki/tls"} "path": "/etc/pki"}
}, },
{ "name": "srvsshproxy", { "name": "srvsshproxy",
"hostPath": { "hostPath": {

View File

@@ -121,8 +121,8 @@
{ "name": "etcopenssl", { "name": "etcopenssl",
"mountPath": "/etc/openssl", "mountPath": "/etc/openssl",
"readOnly": true}, "readOnly": true},
{ "name": "etcpkitls", { "name": "etcpki",
"mountPath": "/etc/pki/tls", "mountPath": "/etc/pki",
"readOnly": true} "readOnly": true}
] ]
} }
@@ -150,9 +150,9 @@
"hostPath": { "hostPath": {
"path": "/etc/openssl"} "path": "/etc/openssl"}
}, },
{ "name": "etcpkitls", { "name": "etcpki",
"hostPath": { "hostPath": {
"path": "/etc/pki/tls"} "path": "/etc/pki"}
} }
] ]
}} }}