From ccf39db85fb7f0d7b6af9ec4c6ec5b28653b215e Mon Sep 17 00:00:00 2001 From: YuBing Date: Sun, 7 Jul 2024 23:04:09 +0800 Subject: [PATCH] fix enabled postgresql but deploy failed case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit without the postgresPassword , job skywalking-skywalking-helm-oap-init will fail , cause postgresql generate a random password。 --- chart/skywalking/values.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/chart/skywalking/values.yaml b/chart/skywalking/values.yaml index cd039bd..154b35f 100644 --- a/chart/skywalking/values.yaml +++ b/chart/skywalking/values.yaml @@ -444,6 +444,7 @@ postgresql: # The hostname of your own postgresql service, this only takes effect when postgresql.enabled is false. host: postgresql-service.your-awesome-company.com auth: + postgresPassword: "123456" username: postgres password: "123456" database: skywalking