Skip to content

Commit 2ed53cf

Browse files
committed
Upgrade default Postgres from 10.16 to 15.4
1 parent 9bcaff4 commit 2ed53cf

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## Unreleased
88

9+
### Changed
10+
- The default Postgres server version is incremented to 15.4 from 10.16.
11+
[cyberark/conjur-oss-helm-chart#185](https://github.com/cyberark/conjur-oss-helm-chart/pull/185)
12+
913
## [2.0.6] - 2023-03-09
1014

1115
### Changed

conjur-oss/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ $ helm install \
127127
--set image.tag=latest \
128128
--set nginx.image.repository=registry.connect.redhat.com/cyberark/conjur-nginx \
129129
--set nginx.image.tag=latest \
130-
--set postgres.image.repository=registry.redhat.io/rhscl/postgresql-10-rhel7 \
130+
--set postgres.image.repository=registry.redhat.io/rhel8/postgresql-15 \
131131
--set postgres.image.tag=latest \
132132
--set openshift.enabled=true \
133133
--set dataKey="$DATA_KEY" \
@@ -271,7 +271,7 @@ setting the equivalent field in a custom values.yaml file):
271271
```
272272

273273
The format of a Postgres database connection string is documented
274-
[here](https://www.postgresql.org/docs/10/libpq-connect.html#LIBPQ-CONNSTRING).
274+
[here](https://www.postgresql.org/docs/15/libpq-connect.html#LIBPQ-CONNSTRING).
275275

276276
If this chart value is not explicitly set, then an integrated Postgres
277277
database will be deployed along with Conjur.
@@ -364,7 +364,7 @@ The following table lists the configurable parameters of the Conjur Open Source
364364
|`account.create`|If true, a Conjur account is created automatically after installation|`false`|
365365
|`authenticators`|List of authenticators that Conjur will whitelist and load.|`"authn"`|
366366
|`conjurLabels`|Extra Kubernetes labels to apply to Conjur resources|`{}`|
367-
|`database.url`|PostgreSQL connection string. The format is documented [here](https://www.postgresql.org/docs/10/libpq-connect.html#LIBPQ-CONNSTRING). If left blank, an integrated PostgreSQL deployment is created.|`""`|
367+
|`database.url`|PostgreSQL connection string. The format is documented [here](https://www.postgresql.org/docs/15/libpq-connect.html#LIBPQ-CONNSTRING). If left blank, an integrated PostgreSQL deployment is created.|`""`|
368368
|`database.password`|PostgreSQL database password string. Unused if an external Postgres database is configured. See [PostgreSQL Database Password Restrictions](#postgresql-database-password-restrictions) below.|`""`|
369369
|`database.ssl.Cert`|PostgreSQL TLS x509 certificate, base64 encoded.|`""`|
370370
|`database.ssl.key`|PostgreSQL TLS private key, base64 encoded.|`""`|

conjur-oss/UPGRADING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ to this repository's `CHANGELOG.md` file for the respective current vs. new
7777
helm chart version._
7878

7979
_**Note 2**: Details on how upgrades involving breaking changes to Conjur, NGINX,
80-
or PostgreSQL) will be supported in future releases are TBD._
80+
or PostgreSQL will be supported in future releases are TBD._
8181

8282
### Running Helm Upgrade
8383

conjur-oss/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ postgres:
9494
# repository: registry.redhat.io/rhscl/postgresql-10-rhel7
9595
# tag: latest
9696
repository: postgres # https://hub.docker.com/_/postgres/
97-
tag: '10.16'
97+
tag: '15.4'
9898
pullPolicy: Always
9999

100100
persistentVolume:

examples/openshift/0_export_env_vars.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export IMAGE_REPOSITORY="${IMAGE_REPOSITORY:-registry.connect.redhat.com/cyberar
3333
export IMAGE_TAG="${IMAGE_TAG:-latest}"
3434
export NGINX_REPOSITORY="${NGINX_REPOSITORY:-registry.connect.redhat.com/cyberark/conjur-nginx}"
3535
export NGINX_TAG="${NGINX_TAG:-latest}"
36-
export POSTGRES_REPOSITORY="${POSTGRES_REPOSITORY:-registry.redhat.io/rhscl/postgresql-10-rhel7}"
36+
export POSTGRES_REPOSITORY="${POSTGRES_REPOSITORY:-registry.redhat.io/rhel8/postgresql-15}"
3737
export POSTGRES_TAG="${POSTGRES_TAG:-latest}"
3838
export POSTGRES_PV_CREATE="${POSTGRES_PV_CREATE:-false}"
3939
export OPENSHIFT_ENABLED="${OPENSHIFT_ENABLED:-true}"

0 commit comments

Comments
 (0)