Skip to content

Commit 3e3fd02

Browse files
committed
Remove CentOS from component documentation
Issue: [sc-13732]
1 parent 9b374fc commit 3e3fd02

File tree

7 files changed

+12
-21
lines changed

7 files changed

+12
-21
lines changed

docs/config.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,20 @@ menushortcutsnewtab = true # set true to open shortcuts links to a new tab/windo
2828
enableGitInfo = true
2929
operatorVersion = "5.1.0"
3030
operatorVersionLatestRel5_0 = "5.0.5"
31-
centosBase = "centos8"
3231
imageCrunchyPostgres = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1-1"
3332
imageCrunchyPostgresPrivate = "registry.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.1-1"
3433
imageCrunchyPGBackrest = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-1"
3534
imageCrunchyPGBackrestPrivate = "registry.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.36-1"
3635
imageCrunchyPGBouncer = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-1"
3736
imageCrunchyExporter = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.0-0"
3837
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:centos8-4.20-0"
39-
repository = "registry.developers.crunchydata.com/crunchydata"
40-
repositoryPrivate = "registry.com/crunchydata"
38+
operatorRepository = "registry.developers.crunchydata.com/crunchydata/postgres-operator"
39+
operatorRepositoryPrivate = "registry.crunchydata.com/crunchydata/postgres-operator"
4140
postgresOperatorTag = "ubi8-5.1.0-0"
4241
PGBouncerComponentTagUbi8 = "ubi8-1.16-1"
43-
PGBouncerComponentTagCentos8 = "centos8-1.16-1"
4442
PGBouncerTagUbi8 = "ubi8-5.1.0-0"
45-
PGBouncerTagCentos8 = "centos8-5.1.0-0"
4643
postgres14GIS31ComponentTagUbi8 = "ubi8-14.1-3.1-1"
47-
postgres14GIS31ComponentTagCentos8 = "centos8-14.1-3.1-1"
4844
postgres14GIS31TagUbi8 = "ubi8-14.1-3.1-5.1.0-0"
49-
postgres14GIS31TagCentos8 = "centos8-14.1-3.1-5.1.0-0"
5045
fromPostgresVersion = "13"
5146
postgresVersion = "14"
5247
postgresVersion14 = "14.1"

docs/content/guides/private-registries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For example, to set up an image pull secret using the [Kustomize install method]
3636
```yaml
3737
images:
3838
- name: postgres-operator
39-
newName: {{< param repositoryPrivate >}}/postgres-operator
39+
newName: {{< param operatorRepositoryPrivate >}}
4040
newTag: {{< param postgresOperatorTag >}}
4141

4242
patchesJson6902:
@@ -74,7 +74,7 @@ and modify the manifest to be the following:
7474
```yaml
7575
images:
7676
- name: postgres-operator
77-
newName: {{< param repositoryPrivate >}}/postgres-operator
77+
newName: {{< param operatorRepositoryPrivate >}}
7878
newTag: {{< param postgresOperatorTag >}}
7979
8080
patchesJson6902:

docs/content/guides/v4tov5.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,10 +389,10 @@ For more information on how to use PGO v5, we recommend reading through the [PGO
389389
## Additional Considerations
390390

391391
Upgrading to PGO v5 may result in a base image upgrade from EL-7 (UBI / CentOS) to EL-8
392-
(UBI / CentOS). Based on the contents of your Postgres database, you may need to perform
392+
(UBI). Based on the contents of your Postgres database, you may need to perform
393393
additional steps.
394394

395-
Due to changes in the GNU C library (`glibc`) in EL-8, you may need to reindex certain indexes in
395+
Due to changes in the GNU C library `glibc` in EL-8, you may need to reindex certain indexes in
396396
your Postgres cluster. For more information, please read the
397397
[PostgreSQL Wiki on Locale Data Changes](https://wiki.postgresql.org/wiki/Locale_data_changes), how
398398
you can determine if your indexes are affected, and how to fix them.

docs/content/installation/helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For instance, it might be necessary to customize the image tags that are utilize
3838

3939
```yaml
4040
image:
41-
image: {{< param repository >}}/postgres-operartor:{{< param postgresOperatorTag >}}
41+
image: {{< param operatorRepository >}}:{{< param postgresOperatorTag >}}
4242
```
4343
4444
Please note that the `values.yaml` file is located in `helm/install`.

docs/content/installation/kustomize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ in the `kustomize/install/bases/kustomization.yaml` file can be modified:
3838
```yaml
3939
images:
4040
- name: postgres-operator
41-
newName: {{< param repository >}}
41+
newName: {{< param operatorRepository >}}
4242
newTag: {{< param postgresOperatorTag >}}
4343
```
4444

docs/content/references/components.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,23 +75,19 @@ The container tags follow one of two patterns:
7575
- `<baseImage>-<softwareVersion>-<buildVersion>`
7676
- `<baseImage>-<softwareVersion>-<pgoVersion>-<buildVersion>` (Customer Portal only)
7777

78-
For example, if pulling from the [customer portal](https://access.crunchydata.com/), the following would all be valid tags to reference the PgBouncer container:
78+
For example, when pulling from the [customer portal](https://access.crunchydata.com/), the following would both be valid tags to reference the PgBouncer container:
7979

8080
- `{{< param PGBouncerComponentTagUbi8 >}}`
8181
- `{{< param PGBouncerTagUbi8 >}}`
82-
- `{{< param PGBouncerComponentTagCentos8 >}}`
83-
- `{{< param PGBouncerTagCentos8 >}}`
8482

85-
The [developer portal](https://www.crunchydata.com/developers/download-postgres/containers) provides CentOS based images. For example, PgBouncer would use this tag:
83+
On the [developer portal](https://www.crunchydata.com/developers/download-postgres/containers), PgBouncer would use this tag:
8684

87-
- `{{< param PGBouncerComponentTagCentos8 >}}`
85+
- `{{< param PGBouncerComponentTagUbi8 >}}`
8886

8987
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:
9088

9189
- `{{< param postgres14GIS31ComponentTagUbi8 >}}`
9290
- `{{< param postgres14GIS31TagUbi8 >}}`
93-
- `{{< param postgres14GIS31ComponentTagCentos8 >}}`
94-
- `{{< param postgres14GIS31TagCentos8 >}}`
9591

9692
## Extensions Compatibility
9793

docs/content/support/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There are a few options available for community support of the [PGO: the Postgre
1313
In all cases, please be sure to provide as many details as possible in regards to your issue, including:
1414

1515
- Your Platform (e.g. Kubernetes vX.YY.Z)
16-
- Operator Version (e.g. {{< param centosBase >}}-{{< param operatorVersion >}})
16+
- Operator Version (e.g. {{< param operatorVersion >}})
1717
- A detailed description of the issue, as well as steps you took that lead up to the issue
1818
- Any relevant logs
1919
- Any additional information you can provide that you may find helpful

0 commit comments

Comments
 (0)