Skip to content

Commit d3a4bd8

Browse files
authored
Added env vars to config.toml to align with v5.0.x (CrunchyData#3061)
* Added env vars to config.toml to align with v5.0.x and updateded the components.md to utilize those env vars, corrected env var for repositoryprivate it was set to the developers registry by mistake Issue: [sc-13842]
1 parent 0eec4f5 commit d3a4bd8

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

docs/config.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,16 @@ imageCrunchyPGUpgrade = "registry.developers.crunchydata.com/crunchydata/crunchy
3737
imageCrunchyExporter = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.0-0"
3838
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:centos8-4.20-0"
3939
repository = "registry.developers.crunchydata.com/crunchydata"
40-
repositoryPrivate = "registry.developers.com/crunchydata"
40+
repositoryPrivate = "registry.com/crunchydata"
4141
postgresOperatorTag = "ubi8-5.1.0-0"
42+
PGBouncerComponentTagUbi8 = "ubi8-1.16-1"
43+
PGBouncerComponentTagCentos8 = "centos8-1.16-1"
44+
PGBouncerTagUbi8 = "ubi8-5.1.0-0"
45+
PGBouncerTagCentos8 = "centos8-5.1.0-0"
46+
postgres14GIS31ComponentTagUbi8 = "ubi8-14.1-3.1-1"
47+
postgres14GIS31ComponentTagCentos8 = "centos8-14.1-3.1-1"
48+
postgres14GIS31TagUbi8 = "ubi8-14.1-3.1-5.1.0-0"
49+
postgres14GIS31TagCentos8 = "centos8-14.1-3.1-5.1.0-0"
4250
fromPostgresVersion = "13"
4351
postgresVersion = "14"
4452
postgresVersion14 = "14.1"

docs/content/references/components.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,21 +76,21 @@ The container tags follow one of two patterns:
7676

7777
For example, if pulling from the [customer portal](https://access.crunchydata.com/), the following would all be valid tags to reference the PgBouncer container:
7878

79-
- `ubi8-1.16-1`
80-
- `ubi8-5.1.0-0`
81-
- `centos8-1.16-1`
82-
- `centos8-5.1.0-0`
79+
- `{{< param PGBouncerComponentTagUbi8 >}}`
80+
- `{{< param PGBouncerTagUbi8 >}}`
81+
- `{{< param PGBouncerComponentTagCentos8 >}}`
82+
- `{{< param PGBouncerTagCentos8 >}}`
8383

8484
The [developer portal](https://www.crunchydata.com/developers/download-postgres/containers) provides CentOS based images. For example, PgBouncer would use this tag:
8585

86-
- `centos8-1.16-1`
86+
- `{{< param PGBouncerComponentTagCentos8 >}}`
8787

8888
PostGIS enabled containers have both the Postgres and PostGIS software versions included. For example, Postgres 14 with PostGIS 3.1 would use the following tags:
8989

90-
- `ubi8-14.1-3.1-1`
91-
- `ubi8-14.1-3.1-5.1.0-0`
92-
- `centos8-14.1-3.1-1`
93-
- `centos8-14.1-3.1-5.1.0-0`
90+
- `{{< param postgres14GIS31ComponentTagUbi8 >}}`
91+
- `{{< param postgres14GIS31TagUbi8 >}}`
92+
- `{{< param postgres14GIS31ComponentTagCentos8 >}}`
93+
- `{{< param postgres14GIS31TagCentos8 >}}`
9494

9595
## Extensions Compatibility
9696

0 commit comments

Comments
 (0)