From 700b4c966f750509e602e7a31d37deb7caa48da6 Mon Sep 17 00:00:00 2001 From: Kevin Wilder Date: Tue, 12 Jan 2021 10:34:52 -0700 Subject: [PATCH] disable postgres by default --- chart/templates/NOTES.txt | 6 ++++++ chart/values.yaml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/chart/templates/NOTES.txt b/chart/templates/NOTES.txt index c7a8b6b..319e8e7 100644 --- a/chart/templates/NOTES.txt +++ b/chart/templates/NOTES.txt @@ -39,6 +39,12 @@ chose not to enable this by default. See https://docs.gitlab.com/runner/install/ {{- end }} {{ if $.Values.postgresql.install }} WARNING: If you are upgrading from a previous version of the GitLab Helm Chart, there is a major upgrade to the included PostgreSQL chart, which requires manual steps be performed. Please see our upgrade documentation for more information: https://docs.gitlab.com/charts/installation/upgrade.html + +##################### +PLATFORM ONE WARNING: You have enabled an internal postgres database in the values configuration. + PlatformOne does not support this option for production deployments. + This non-default option should only be used for development or CI pipelines. +##################### {{- end -}} {{/* task-runner replicas */}} diff --git a/chart/values.yaml b/chart/values.yaml index 1d0d892..c0a1c5c 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -657,7 +657,7 @@ postgresql: postgresqlUsername: gitlab # This just needs to be set. It will use a second entry in existingSecret for postgresql-postgres-password postgresqlPostgresPassword: bogus - install: true + install: false postgresqlDatabase: gitlabhq_production image: ## could not get IronBank hardened image to work with the postgres sub-chart -- GitLab