X-Git-Url: https://git.arvados.org/arvados-k8s.git/blobdiff_plain/fe40b65d2e4b67d782200b062102e2e29923113a..7476771320cb5f13e3fc43a1354a98d0d92598c4:/charts/arvados/templates/api-server-deployment.yaml diff --git a/charts/arvados/templates/api-server-deployment.yaml b/charts/arvados/templates/api-server-deployment.yaml index 7b5bb5c..4f90fca 100644 --- a/charts/arvados/templates/api-server-deployment.yaml +++ b/charts/arvados/templates/api-server-deployment.yaml @@ -49,6 +49,11 @@ spec: - name: api-server-configmap mountPath: /etc/nginx/sites-enabled/api-server.conf subPath: nginx.conf + {{- if .Values.customCABundle }} + - name: custom-ca-bundle-volume + mountPath: /etc/ssl/certs/ca-certificates.crt + subPath: custom-ca-bundle.pem + {{- end }} - name: arvados-controller image: "cure/arvados-runtime" imagePullPolicy: {{ .Values.image.pullPolicy }} @@ -86,3 +91,8 @@ spec: - name: nginx-configmap configMap: name: arvados-api-server-https-configmap + {{- if .Values.customCABundle }} + - name: custom-ca-bundle-volume + configMap: + name: custom-ca-bundle-configmap + {{- end }}