Skip to content

Commit b6f24a9

Browse files
committed
updated values.yml
1 parent 242be3d commit b6f24a9

File tree

1 file changed

+43
-20
lines changed

1 file changed

+43
-20
lines changed

charts/airbyte/values.yaml

Lines changed: 43 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,18 @@ global:
1919
licenseKeySecretKey: "license-key"
2020

2121
# -- The URL where Airbyte will be reached; This should match your Ingress host
22-
airbyteUrl: ""
22+
airbyteUrl: "https://airbyte.example.com"
23+
24+
# Docker image config that will apply to all images.
25+
image:
26+
# Docker registry to pull platform images from, e.g. http://my-registry:8000/
27+
registry: ""
28+
# Image tag to use for airbyte images.
29+
# Does not include non-airbyte images such as busybox, temporal, minio, etc.
30+
tag: ""
31+
32+
# Docker image pull secret
33+
imagePullSecrets: []
2334

2435
# -- Auth configuration
2536
auth:
@@ -30,7 +41,7 @@ global:
3041
# -- Secret name where the instanceAdmin configuration is stored
3142
secretName: "airbyte-config-secrets"
3243
# -- The first name of the initial user
33-
firstName: ""
44+
firstName: "numocity"
3445
# -- The last name of the initial user
3546
lastName: ""
3647
# -- The key within `emailSecretName` where the initial user's email is stored
@@ -171,10 +182,10 @@ global:
171182
images:
172183
## JOB_KUBE_BUSYBOX_IMAGE
173184
# -- busybox image used by the job pod
174-
busybox: ""
185+
busybox: "busybox:1.35"
175186
## JOB_KUBE_CURL_IMAGE
176187
# -- curl image used by the job pod
177-
curl: ""
188+
curl: "curlimages/curl:8.1.1"
178189

179190
## @section Common Parameters
180191

@@ -844,10 +855,6 @@ worker:
844855
debug:
845856
enabled: false
846857

847-
containerOrchestrator:
848-
# -- Orchestrator image
849-
image: ""
850-
851858
## current no exist documentations
852859
activityMaxAttempt: ""
853860
activityInitialDelayBetweenAttemptsSeconds: ""
@@ -987,15 +994,18 @@ workload-launcher:
987994
# -- Enable or disable Orchestrator
988995
enabled: true
989996
# -- Orchestrator image
990-
image: ""
997+
# This is a template string that will be passed to the "tpl" helper.
998+
image: "airbyte/container-orchestrator:{{ default .Chart.AppVersion .Values.global.image.tag }}"
991999

9921000
connectorSidecar:
9931001
# -- Connector Sidecar image
994-
image: ""
1002+
# This is a template string that will be passed to the "tpl" helper.
1003+
image: "airbyte/connector-sidecar:{{ default .Chart.AppVersion .Values.global.image.tag }}"
9951004

996-
# -- Workload init image
9971005
workloadInit:
998-
image: ""
1006+
# -- Workload init image
1007+
# This is a template string that will be passed to the "tpl" helper.
1008+
image: "airbyte/workload-init-container:{{ default .Chart.AppVersion .Values.global.image.tag }}"
9991009

10001010
## current no exist documentations
10011011
activityMaxAttempt: ""
@@ -1714,17 +1724,19 @@ externalDatabase:
17141724
# -- Database full JDBL URL (ex: jdbc:postgresql://host:port/db?parameters)
17151725
jdbcUrl: ""
17161726

1717-
## @section Logs parameters
1718-
17191727
minio:
17201728
image:
17211729
# -- Minio image used by Minio helm chart
17221730
repository: minio/minio
17231731
# -- Minio tag image
17241732
tag: RELEASE.2023-11-20T22-40-07Z
17251733

1734+
mcImage:
1735+
repository: airbyte/mc
1736+
tag: latest
1737+
17261738
storage:
1727-
volumeClaimValue: 500Mi
1739+
volumeClaimValue: 2Gi
17281740

17291741
# -- Node labels for pod assignment, see https://kubernetes.io/docs/user-guide/node-selection/
17301742
##
@@ -1739,7 +1751,6 @@ minio:
17391751
affinity: {}
17401752

17411753
## @section cron parameters
1742-
17431754
cron:
17441755
enabled: true
17451756
# -- Number of cron replicas
@@ -2011,7 +2022,6 @@ connector-builder-server:
20112022
# https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
20122023
affinity: {}
20132024

2014-
20152025
keycloak:
20162026
enabled: true
20172027
env_vars: {}
@@ -2020,14 +2030,18 @@ keycloak:
20202030
adminUsername: airbyteAdmin
20212031
adminPassword: keycloak123
20222032

2033+
image:
2034+
repository: airbyte/keycloak
2035+
pullPolicy: IfNotPresent
2036+
20232037
# -- Security context for the container
20242038
podSecurityContext:
20252039
# gid=0(root)
20262040
fsGroup: 0
20272041

20282042
initContainers:
20292043
initDb:
2030-
image: {}
2044+
image: "postgres:13-alpine"
20312045

20322046
initContainerSecurityContext:
20332047
allowPrivilegeEscalation: false
@@ -2069,6 +2083,10 @@ keycloak-setup:
20692083
enabled: true
20702084
env_vars: {}
20712085

2086+
image:
2087+
repository: airbyte/keycloak-setup
2088+
pullPolicy: IfNotPresent
2089+
20722090
# -- Security context for the container
20732091
podSecurityContext:
20742092
# gid=1000(airbyte)
@@ -2089,7 +2107,7 @@ keycloak-setup:
20892107

20902108
initContainers:
20912109
keycloakReadinessCheck:
2092-
image: {}
2110+
image: "curlimages/curl:8.1.1"
20932111

20942112
containerSecurityContext:
20952113
allowPrivilegeEscalation: false
@@ -2351,4 +2369,9 @@ featureflag-server:
23512369
tls: []
23522370
# - secretName: chart-example-tls
23532371
# hosts:
2354-
# - chart-example.local
2372+
# - chart-example.local
2373+
2374+
testWebapp:
2375+
image:
2376+
repository: busybox
2377+
tag: latest

0 commit comments

Comments
 (0)