From af5261edc58fea51ef537418218ac362263e362a Mon Sep 17 00:00:00 2001 From: ljupcovangelski Date: Thu, 6 Jul 2023 17:29:29 +0200 Subject: [PATCH] [#4105] Add info about the default Postgresql user --- docs/docs/apps/postgresql.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/apps/postgresql.md b/docs/docs/apps/postgresql.md index 3104ae1f0..4d8192c46 100644 --- a/docs/docs/apps/postgresql.md +++ b/docs/docs/apps/postgresql.md @@ -17,10 +17,10 @@ helm install postgresql airy/postgresql The default version is `15.1` but this can be modified by overwriting the `--set version` value, when deploying the Helm chart. -To retrieve the administrative Postgresql password run: +To retrieve the administrative Postgresql password for the `postgres` user run: ``` kubectl get secret postgresql -o jsonpath='{.data.postgresql-password}' | base64 -d ``` -Note that the password changes everytime that the helm chart is updated. Would be best to use it as an environmental variable in the pod, mounted directly from the `postgresql` secret. +Note that the password changes every time that the helm chart is updated. Would be best to use it as an environmental variable in the pod, mounted directly from the `postgresql` secret.