Skip to content

Commit 05ab878

Browse files
committed
Add dataplane ID env var (#9543)
1 parent dc901be commit 05ab878

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

airbyte-workload-launcher/src/main/resources/application.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ micronaut:
99
idle-timeout: ${HTTP_IDLE_TIMEOUT:10m}
1010

1111
airbyte:
12+
control-plane-auth-endpoint: ${CONTROL_PLANE_AUTH_ENDPOINT:}
13+
data-plane-id: ${DATA_PLANE_ID}
1214
feature-flag:
1315
client: ${FEATURE_FLAG_CLIENT:}
1416
path: ${FEATURE_FLAG_PATH:/flags}
@@ -20,8 +22,6 @@ airbyte:
2022
service-account:
2123
credentials-path: ${DATA_PLANE_SERVICE_ACCOUNT_CREDENTIALS_PATH:}
2224
email: ${DATA_PLANE_SERVICE_ACCOUNT_EMAIL:}
23-
data-plane-id: ${DATA_PLANE_ID:}
24-
control-plane-auth-endpoint: ${CONTROL_PLANE_AUTH_ENDPOINT:}
2525
secret:
2626
persistence: ${SECRET_PERSISTENCE}
2727
store:

charts/airbyte-workload-launcher/templates/deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ spec:
6666
configMapKeyRef:
6767
name: {{ .Release.Name }}-airbyte-env
6868
key: AIRBYTE_VERSION
69+
- name: DATA_PLANE_ID
70+
value: "local"
6971
- name: CONFIG_ROOT
7072
valueFrom:
7173
configMapKeyRef:

0 commit comments

Comments
 (0)