Skip to content

Commit 921e168

Browse files
authored
feat(executor): Add envsFrom to the executor
2 parents ca99d0d + 28f6489 commit 921e168

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Diff for: .github/workflows/lint-test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
with:
2929
version: v3.4.0
3030

31-
- uses: actions/setup-python@v2
31+
- uses: actions/setup-python@v5
3232
with:
33-
python-version: 3.7
33+
python-version: "3.10"
3434

3535
- name: Set up chart-testing
3636
uses: helm/[email protected]

Diff for: charts/datahub-executor-worker/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: datahub-executor-worker
33
description: A Helm chart for datahub-executor-worker
44
type: application
5-
version: 0.0.11
6-
appVersion: 0.0.1
5+
version: 0.0.12
6+
appVersion: 0.3.7.3
77
maintainers:
88
- name: DataHub
99

Diff for: charts/datahub-executor-worker/templates/workload.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,13 @@ spec:
142142
value: {{ .Values.global.datahub.executor.ingestions.signal_poll_interval | quote }}
143143
- name: DATAHUB_EXECUTOR_MONITORS_MAX_WORKERS
144144
value: {{ .Values.global.datahub.executor.monitors.max_workers | quote }}
145-
{{- if .Values.extraEnvs }}
145+
{{- if .Values.extraEnvs -}}
146146
{{ toYaml .Values.extraEnvs | nindent 12 }}
147147
{{- end }}
148+
{{- if .Values.extraEnvsFrom }}
149+
envFrom:
150+
{{- toYaml .Values.extraEnvsFrom | nindent 12 }}
151+
{{- end }}
148152
volumeMounts:
149153
{{- if .Values.extraCaCerts }}
150154
- name: ca-certs

0 commit comments

Comments
 (0)