Skip to content
Open
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.16
version: 0.0.17
appVersion: 0.3.8.2
maintainers:
- name: DataHub
Expand Down
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 @@ -134,8 +134,12 @@ spec:
key: {{ ((.Values.global.datahub).gms).secretKey }}
- name: DATAHUB_EXECUTOR_MODE
value: "worker"
{{- if hasKey .Values.global.datahub.executor "pool_id" }}
- name: DATAHUB_EXECUTOR_POOL_ID
value: {{ .Values.global.datahub.executor.pool_id | quote }}
{{- else }}
- name: DATAHUB_EXECUTOR_WORKER_ID
{{- end }}
value: {{ (.Values.global.datahub.executor).pool_id | default (.Values.global.datahub.executor).worker_id | quote }}
- name: DATAHUB_EXECUTOR_INGESTION_MAX_WORKERS
value: {{ .Values.global.datahub.executor.ingestions.max_workers | quote }}
- name: DATAHUB_EXECUTOR_INGESTION_SIGNAL_POLL_INTERVAL
Expand Down
1 change: 1 addition & 0 deletions charts/datahub-executor-worker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ global:
secretKey: datahub-access-token-secret-key
url: https://datahub.acryl.io/gms
executor:
# worker_id: "DEPRECATED: use pool_id instead"
pool_id: "remote"
ingestions:
max_workers: 4
Expand Down