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 authored Dec 19, 2024
2 parents ca99d0d + 28f6489 commit 921e168
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
with:
version: v3.4.0

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: "3.10"

- name: Set up chart-testing
uses: helm/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions charts/datahub-executor-worker/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: datahub-executor-worker
description: A Helm chart for datahub-executor-worker
type: application
version: 0.0.11
appVersion: 0.0.1
version: 0.0.12
appVersion: 0.3.7.3
maintainers:
- name: DataHub
email: [email protected]
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 921e168

Please sign in to comment.