diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2025-01-20 15:57:23 +0100 |
---|---|---|
committer | Andreas Geissler <andreas-geissler@telekom.de> | 2025-01-23 07:54:57 +0000 |
commit | 5a416c63334742c054ae0837a8fc7ebb2a69f6bf (patch) | |
tree | b568dd8c434fe34ab542e44ddb675667033a413f /kubernetes | |
parent | bb6ae7f9546b7760ed5ad584110a985b5cb5964d (diff) |
[POLICY] Add fixed postgres image tag and postgres portoslo
Use fixed image version instead of "latest" and
define a port variable used in the DB job definition
Issue-ID: POLICY-5250
Change-Id: I2d73cb485ac1a6cb94913cdaa0b3a8bfe87a60e0
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/policy/values.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kubernetes/policy/values.yaml b/kubernetes/policy/values.yaml index 2fd3c32878..fbaeda2a9e 100644 --- a/kubernetes/policy/values.yaml +++ b/kubernetes/policy/values.yaml @@ -286,7 +286,7 @@ mariadb-galera: serviceAccount: nameOverride: *mariadbService -postgresImage: library/postgres:latest +postgresImage: library/postgres:17.2 # application configuration override for postgres postgres: nameOverride: &postgresName policy-postgres @@ -294,6 +294,7 @@ postgres: name: *postgresName name2: policy-pg-primary name3: policy-pg-replica + internalPort: 5432 container: name: primary: policy-pg-primary |