Skip to content

Commit

Permalink
updated values.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajath-Numo committed Oct 21, 2024
1 parent 242be3d commit b6f24a9
Showing 1 changed file with 43 additions and 20 deletions.
63 changes: 43 additions & 20 deletions charts/airbyte/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,18 @@ global:
licenseKeySecretKey: "license-key"

# -- The URL where Airbyte will be reached; This should match your Ingress host
airbyteUrl: ""
airbyteUrl: "https://airbyte.example.com"

# Docker image config that will apply to all images.
image:
# Docker registry to pull platform images from, e.g. http://my-registry:8000/
registry: ""
# Image tag to use for airbyte images.
# Does not include non-airbyte images such as busybox, temporal, minio, etc.
tag: ""

# Docker image pull secret
imagePullSecrets: []

# -- Auth configuration
auth:
Expand All @@ -30,7 +41,7 @@ global:
# -- Secret name where the instanceAdmin configuration is stored
secretName: "airbyte-config-secrets"
# -- The first name of the initial user
firstName: ""
firstName: "numocity"
# -- The last name of the initial user
lastName: ""
# -- The key within `emailSecretName` where the initial user's email is stored
Expand Down Expand Up @@ -171,10 +182,10 @@ global:
images:
## JOB_KUBE_BUSYBOX_IMAGE
# -- busybox image used by the job pod
busybox: ""
busybox: "busybox:1.35"
## JOB_KUBE_CURL_IMAGE
# -- curl image used by the job pod
curl: ""
curl: "curlimages/curl:8.1.1"

## @section Common Parameters

Expand Down Expand Up @@ -844,10 +855,6 @@ worker:
debug:
enabled: false

containerOrchestrator:
# -- Orchestrator image
image: ""

## current no exist documentations
activityMaxAttempt: ""
activityInitialDelayBetweenAttemptsSeconds: ""
Expand Down Expand Up @@ -987,15 +994,18 @@ workload-launcher:
# -- Enable or disable Orchestrator
enabled: true
# -- Orchestrator image
image: ""
# This is a template string that will be passed to the "tpl" helper.
image: "airbyte/container-orchestrator:{{ default .Chart.AppVersion .Values.global.image.tag }}"

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

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

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

## @section Logs parameters

minio:
image:
# -- Minio image used by Minio helm chart
repository: minio/minio
# -- Minio tag image
tag: RELEASE.2023-11-20T22-40-07Z

mcImage:
repository: airbyte/mc
tag: latest

storage:
volumeClaimValue: 500Mi
volumeClaimValue: 2Gi

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

## @section cron parameters

cron:
enabled: true
# -- Number of cron replicas
Expand Down Expand Up @@ -2011,7 +2022,6 @@ connector-builder-server:
# https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
affinity: {}


keycloak:
enabled: true
env_vars: {}
Expand All @@ -2020,14 +2030,18 @@ keycloak:
adminUsername: airbyteAdmin
adminPassword: keycloak123

image:
repository: airbyte/keycloak
pullPolicy: IfNotPresent

# -- Security context for the container
podSecurityContext:
# gid=0(root)
fsGroup: 0

initContainers:
initDb:
image: {}
image: "postgres:13-alpine"

initContainerSecurityContext:
allowPrivilegeEscalation: false
Expand Down Expand Up @@ -2069,6 +2083,10 @@ keycloak-setup:
enabled: true
env_vars: {}

image:
repository: airbyte/keycloak-setup
pullPolicy: IfNotPresent

# -- Security context for the container
podSecurityContext:
# gid=1000(airbyte)
Expand All @@ -2089,7 +2107,7 @@ keycloak-setup:

initContainers:
keycloakReadinessCheck:
image: {}
image: "curlimages/curl:8.1.1"

containerSecurityContext:
allowPrivilegeEscalation: false
Expand Down Expand Up @@ -2351,4 +2369,9 @@ featureflag-server:
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# - chart-example.local

testWebapp:
image:
repository: busybox
tag: latest

0 comments on commit b6f24a9

Please sign in to comment.