X-Git-Url: https://git.arvados.org/arvados-k8s.git/blobdiff_plain/5c2d0b346aa9a95050218d2d08e2fb55516f7314..dcdcd547450ce51f74df96143e9955fc4236888c:/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 }}