1
0
mirror of synced 2026-01-08 21:05:13 -05:00

Add google cloud storage configuration in helm chart (#8332)

* Add google cloud storage configuration in helm chart

* Fix GCS naming convention in helm chart

* Fix setting GCS_LOG_BUCKET in helm env-configmap

* Add quotes to gcs values in helm env-configmap

* Remove unnecessary 'default ' in helm env-configmap
This commit is contained in:
Maxime Naulleau
2021-12-13 14:55:17 +01:00
committed by GitHub
parent b1c067a6f6
commit 6854776e4e
3 changed files with 13 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 1.10.0
version: 1.10.1
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 10.12.2
version: 10.13.9
- name: minio
repository: https://charts.bitnami.com/bitnami
version: 7.3.2
digest: sha256:5f89ca9a82db41bcb9dce50e95a2abcafebce71b51be99760a670be30a3ec5c6
generated: "2021-10-08T12:41:40.511486438-05:00"
digest: sha256:51711092d4fb978667aaeadac5080241db1eb32d4a0d4d25c2a775110d013813
generated: "2021-11-30T11:54:53.849182827+01:00"

View File

@@ -17,8 +17,8 @@ data:
DATABASE_USER: {{ include "airbyte.database.user" . }}
DB_DOCKER_MOUNT: airbyte_db
FULLSTORY: {{ ternary "enabled" "disabled" .Values.webapp.fullstory.enabled }}
GCS_LOG_BUCKET: ""
GOOGLE_APPLICATION_CREDENTIALS: ""
GCS_LOG_BUCKET: {{ .Values.logs.gcs.bucket | quote }}
GOOGLE_APPLICATION_CREDENTIALS: {{ .Values.logs.gcs.credentials | quote }}
INTERNAL_API_HOST: {{ include "common.names.fullname" . }}-server:{{ .Values.server.service.port }}
IS_DEMO: {{ ternary "true" "false" .Values.webapp.isDemo | quote }}
JOB_POD_MAIN_CONTAINER_CPU_LIMIT: ""

View File

@@ -542,3 +542,10 @@ logs:
enabled: false
bucket: airbyte-dev-logs
bucketRegion: ""
## Google Cloud Storage (GCS) Log Location Configuration
## @param gcs.bucket GCS bucket name
## @param gcs.credentials The path the GCS creds are written to
gcs:
bucket: ""
credentials: ""