Skip to content

Commit

Permalink
feat(executor): Add envsFrom to the executor
Browse files Browse the repository at this point in the history
  • Loading branch information
skrydal committed Dec 19, 2024
1 parent ca99d0d commit 987de89
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion charts/datahub-executor-worker/templates/workload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,13 @@ spec:
value: {{ .Values.global.datahub.executor.ingestions.signal_poll_interval | quote }}
- name: DATAHUB_EXECUTOR_MONITORS_MAX_WORKERS
value: {{ .Values.global.datahub.executor.monitors.max_workers | quote }}
{{- if .Values.extraEnvs }}
{{- if .Values.extraEnvs -}}
{{ toYaml .Values.extraEnvs | nindent 12 }}
{{- end }}
{{- if .Values.extraEnvsFrom }}
envFrom:
{{- toYaml .Values.extraEnvsFrom | nindent 12 }}
{{- end }}
volumeMounts:
{{- if .Values.extraCaCerts }}
- name: ca-certs
Expand Down

0 comments on commit 987de89

Please sign in to comment.