From 1543fd3374a4e531ec6451cdbb3f8b2f9f1e1eb7 Mon Sep 17 00:00:00 2001 From: matthias Date: Mon, 6 Nov 2023 14:48:41 +0100 Subject: [PATCH] added password_encryption parameter --- cluster-tutorials/configure_users_and_databases/postgres.yaml | 2 ++ cluster-tutorials/high-availability-cluster/ha-postgres.yaml | 2 ++ cluster-tutorials/monitored_cluster/postgres.yaml | 1 + cluster-tutorials/pgbackrest_with_s3/postgres.yaml | 2 ++ cluster-tutorials/prepared_databases/postgres.yaml | 2 ++ cluster-tutorials/single-cluster/postgres.yaml | 2 ++ 6 files changed, 11 insertions(+) diff --git a/cluster-tutorials/configure_users_and_databases/postgres.yaml b/cluster-tutorials/configure_users_and_databases/postgres.yaml index acce5ca..2bc45fc 100644 --- a/cluster-tutorials/configure_users_and_databases/postgres.yaml +++ b/cluster-tutorials/configure_users_and_databases/postgres.yaml @@ -7,6 +7,8 @@ spec: numberOfInstances: 1 postgresql: version: '16' + parameters: + password_encryption: "scram-sha-256" resources: limits: cpu: 500m diff --git a/cluster-tutorials/high-availability-cluster/ha-postgres.yaml b/cluster-tutorials/high-availability-cluster/ha-postgres.yaml index aeddf05..3f6f345 100644 --- a/cluster-tutorials/high-availability-cluster/ha-postgres.yaml +++ b/cluster-tutorials/high-availability-cluster/ha-postgres.yaml @@ -7,6 +7,8 @@ spec: numberOfInstances: 2 postgresql: version: '16' + parameters: + password_encryption: "scram-sha-256" resources: limits: cpu: 500m diff --git a/cluster-tutorials/monitored_cluster/postgres.yaml b/cluster-tutorials/monitored_cluster/postgres.yaml index eef4540..1eb2ae2 100644 --- a/cluster-tutorials/monitored_cluster/postgres.yaml +++ b/cluster-tutorials/monitored_cluster/postgres.yaml @@ -11,6 +11,7 @@ spec: version: '16' parameters: shared_preload_libraries: 'pg_stat_statements,pgnodemx' + password_encryption: "scram-sha-256" resources: limits: cpu: 500m diff --git a/cluster-tutorials/pgbackrest_with_s3/postgres.yaml b/cluster-tutorials/pgbackrest_with_s3/postgres.yaml index 13fecd4..406b9f4 100644 --- a/cluster-tutorials/pgbackrest_with_s3/postgres.yaml +++ b/cluster-tutorials/pgbackrest_with_s3/postgres.yaml @@ -7,6 +7,8 @@ spec: numberOfInstances: 1 postgresql: version: '16' + parameters: + password_encryption: "scram-sha-256" resources: limits: cpu: 500m diff --git a/cluster-tutorials/prepared_databases/postgres.yaml b/cluster-tutorials/prepared_databases/postgres.yaml index 2aacde7..8159120 100644 --- a/cluster-tutorials/prepared_databases/postgres.yaml +++ b/cluster-tutorials/prepared_databases/postgres.yaml @@ -7,6 +7,8 @@ spec: numberOfInstances: 1 postgresql: version: '16' + parameters: + password_encryption: "scram-sha-256" preparedDatabases: bar: defaultUsers: true diff --git a/cluster-tutorials/single-cluster/postgres.yaml b/cluster-tutorials/single-cluster/postgres.yaml index 2bded10..afde39a 100644 --- a/cluster-tutorials/single-cluster/postgres.yaml +++ b/cluster-tutorials/single-cluster/postgres.yaml @@ -7,6 +7,8 @@ spec: numberOfInstances: 1 postgresql: version: '16' + parameters: + password_encryption: "scram-sha-256" resources: limits: cpu: 500m