Commit 3733f649 authored by Matt Liggett's avatar Matt Liggett

Add ssl certs to federation-controller-manager container.

Fixes #27684. For now, I'm simply poking a hole to grab the system /etc/ssl/certs. If we decide we want something less dependent on the node filesystem, we will need to decide how we pick a "distro" more sophisticated than busybox for federation components running on k8s. I'll open a followup issue to discuss this.
parent f32d23ad
...@@ -13,8 +13,16 @@ spec: ...@@ -13,8 +13,16 @@ spec:
app: federated-cluster app: federated-cluster
module: federation-controller-manager module: federation-controller-manager
spec: spec:
volumes:
- name: ssl-certs
hostPath:
path: /etc/ssl/certs
containers: containers:
- name: controller-manager - name: controller-manager
volumeMounts:
- name: ssl-certs
readOnly: true
mountPath: /etc/ssl/certs
image: {{.FEDERATION_CONTROLLER_MANAGER_IMAGE_REPO}}:{{.FEDERATION_CONTROLLER_MANAGER_IMAGE_TAG}} image: {{.FEDERATION_CONTROLLER_MANAGER_IMAGE_REPO}}:{{.FEDERATION_CONTROLLER_MANAGER_IMAGE_TAG}}
command: command:
- /usr/local/bin/federation-controller-manager - /usr/local/bin/federation-controller-manager
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment