From 7bb4ecce42e9d3da2a3d61bb66fdf5f62a767e07 Mon Sep 17 00:00:00 2001 From: Kadaffy Talavera Date: Thu, 16 Oct 2025 12:29:49 +0200 Subject: [PATCH] fix: update user documentation about password encryption Signed-off-by: Kadaffy Talavera --- docs/user.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/user.md b/docs/user.md index c1a7c7d45..67cd0f764 100644 --- a/docs/user.md +++ b/docs/user.md @@ -96,10 +96,11 @@ psql -U postgres -h localhost -p 6432 ## Password encryption -Passwords are encrypted with `md5` hash generation by default. However, it is -possible to use the more recent `scram-sha-256` method by changing the -`password_encryption` parameter in the Postgres config. You can define it -directly from the cluster manifest: +Passwords are encrypted using the `scram-sha-256` hashing method by default. However, it is possible to use the `md5` method by changing the `password_encryption` parameter in the PostgreSQL configuration. + +> **Note:** `md5` authentication is deprecated in PostgreSQL. + +You can also define this parameter directly in the cluster manifest: ```yaml apiVersion: "acid.zalan.do/v1" @@ -1053,7 +1054,7 @@ spec: - all volumeSource: emptyDir: {} - sidecars: + sidecars: - name: "container-name" image: "company/image:tag" volumeMounts: