Skip to content

Commit

Permalink
Helm: set new attribute (#22114)
Browse files Browse the repository at this point in the history
* set new helm attribute

* change to camelCase

---------

Co-authored-by: Kyryl Skobylko <[email protected]>
Co-authored-by: Marcos Marx <[email protected]>
  • Loading branch information
3 people authored Feb 9, 2023
1 parent 1807c8f commit 39402c1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
10 changes: 5 additions & 5 deletions charts/airbyte/templates/env-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ data:
{{- end }}
JOBS_DATABASE_MINIMUM_FLYWAY_MIGRATION_VERSION: "0.29.15.001"
LOCAL_ROOT: /tmp/airbyte_local
RUN_DATABASE_MIGRATION_ON_STARTUP: "true"
RUN_DATABASE_MIGRATION_ON_STARTUP: {{ .Values.airbyte-bootloader.runDatabaseMigrationsOnStartup | default "true" }}
S3_LOG_BUCKET: {{ .Values.global.logs.s3.bucket | quote }}
S3_LOG_BUCKET_REGION: {{ .Values.global.logs.s3.bucketRegion | quote }}
S3_MINIO_ENDPOINT: {{ include "airbyte.minio.endpoint" . | quote }}
Expand All @@ -58,9 +58,9 @@ data:
WORKSPACE_ROOT: /workspace
METRIC_CLIENT: {{ .Values.global.metrics.metricClient | default "" | quote }}
OTEL_COLLECTOR_ENDPOINT: {{ .Values.global.metrics.otelCollectorEndpoint | default "" | quote }}
ACTIVITY_MAX_ATTEMPT: ""
ACTIVITY_INITIAL_DELAY_BETWEEN_ATTEMPTS_SECONDS: ""
ACTIVITY_MAX_DELAY_BETWEEN_ATTEMPTS_SECONDS: ""
ACTIVITY_MAX_ATTEMPT: {{ .Values.worker.activityMaxAttempt | default "" }}
ACTIVITY_INITIAL_DELAY_BETWEEN_ATTEMPTS_SECONDS: {{ .Values.worker.activityInitialDelayBetweenAttemptsSeconds | default "" }}
ACTIVITY_MAX_DELAY_BETWEEN_ATTEMPTS_SECONDS: {{ .Values.worker.activityMaxDelayBetweenAttemptsSeconds | default "" }}
WORKFLOW_FAILURE_RESTART_DELAY_SECONDS: ""
USE_STREAM_CAPABLE_STATE: "true"
AUTO_DETECT_SCHEMA: "true"
Expand All @@ -71,5 +71,5 @@ data:
WORKER_LOGS_STORAGE_TYPE: {{ .Values.global.logs.storage.type | quote }}
WORKER_STATE_STORAGE_TYPE: {{ .Values.global.state.storage.type | quote }}
SHOULD_RUN_NOTIFY_WORKFLOWS: "false"
MAX_NOTIFY_WORKERS: "5"
MAX_NOTIFY_WORKERS: {{ .Values.worker.maxNotifyWorkers | default "5" }}
{{- end }}
8 changes: 8 additions & 0 deletions charts/airbyte/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,11 @@ worker:
enabled: true
image: ""

## current no exist documentations
activityMaxAttempt: ""
activityInitialDelayBetweenAttemptsSeconds: ""
activityMaxDelayBetweenAttemptsSeconds: ""

## @section Metrics parameters
metrics:
enabled: false
Expand Down Expand Up @@ -1057,6 +1062,9 @@ airbyte-bootloader:
##
extraVolumes: []

## run database migrations on startup true|false
runDatabaseMigrationsOnStartup: "true"

## @section Temporal parameters
## TODO: Move to consuming temporal from a dedicated helm chart

Expand Down
7 changes: 7 additions & 0 deletions charts/airbyte/values.yaml.test
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,10 @@ worker:
enabled: true
image: ""

activityMaxAttempt: ""
activityInitialDelayBetweenAttemptsSeconds: ""
activityMaxDelayBetweenAttemptsSeconds: ""

## @section Metrics parameters
metrics:
enabled: false
Expand Down Expand Up @@ -1045,6 +1049,9 @@ airbyte-bootloader:
##
extraVolumes: []

## run database migrations on startup true|false
runDatabaseMigrationsOnStartup: "true"

## @section Temporal parameters
## TODO: Move to consuming temporal from a dedicated helm chart

Expand Down

0 comments on commit 39402c1

Please sign in to comment.