Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for custom CA certs #15

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/datahub-executor-worker/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: datahub-executor-worker
description: A Helm chart for datahub-executor-worker
type: application
version: 0.0.6
version: 0.0.7
appVersion: 0.0.1
maintainers:
- name: DataHub
Expand Down
34 changes: 34 additions & 0 deletions charts/datahub-executor-worker/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,40 @@ spec:
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
{{- with .Values.extraCaCerts }}
- name: ca-certs
emptyDir: {}
{{- range $key, $value := . }}
- name: {{ $key }}
secret:
secretName: {{ $value }}
{{- end }}
{{- end }}
{{- if .Values.extraVolumes }}
{{ toYaml .Values.extraVolumes | nindent 8 }}
{{- end }}
initContainers:
{{- if .Values.extraCaCerts }}
- name: install-ca-certs
image: "{{ .Values.image.repository }}:{{ required "image tag is required" .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["/bin/bash", "-c"]
args:
- update-ca-certificates && cp -Lr /etc/ssl/certs/. /mnt/ca-certs/
securityContext:
privileged: true
runAsUser: 0
volumeMounts:
- name: ca-certs
mountPath: /mnt/ca-certs
{{- with .Values.extraCaCerts -}}
{{ range $key, $value := . }}
- mountPath: "/usr/local/share/ca-certificates/{{ $key }}"
name: {{ $key | quote }}
readOnly: true
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.extraInitContainers }}
{{- .Values.extraInitContainers | toYaml | nindent 6 }}
{{- end }}
Expand Down Expand Up @@ -113,6 +143,10 @@ spec:
{{ toYaml .Values.extraEnvs | nindent 12 }}
{{- end }}
volumeMounts:
{{- if .Values.extraCaCerts }}
- name: ca-certs
mountPath: /etc/ssl/certs
{{- end }}
{{- if .Values.persistentVolume.enabled }}
- name: executor-storage-volume
mountPath: {{ .Values.persistentVolume.mountPath }}
Expand Down
2 changes: 2 additions & 0 deletions charts/datahub-executor-worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ extraVolumeMounts: []

extraInitContainers: []

extraCaCerts: {}

extraLabels: {}

extraPodLabels: {}
Expand Down
Loading