Skip to content

Commit 5169931

Browse files
committed
Image updates
Image updates for PGO installers, examples and documentation. Issue: [ch12164]
1 parent 94888e9 commit 5169931

File tree

12 files changed

+32
-32
lines changed

12 files changed

+32
-32
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please provide the following details:
2929

3030
- Platform: (`Kubernetes`, `OpenShift`, `Rancher`, `GKE`, `EKS`, `AKS` etc.)
3131
- Platform Version: (e.g. `1.20.3`, `4.7.0`)
32-
- PGO Image Tag: (e.g. `ubi8-5.0.0-0`)
32+
- PGO Image Tag: (e.g. `ubi8-5.0.1-0`)
3333
- Postgres Version (e.g. `13`)
3434
- Storage: (e.g. `hostpath`, `nfs`, or the name of your storage class)
3535

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Please provide the following details:
3232

3333
- Platform: (`Kubernetes`, `OpenShift`, `Rancher`, `GKE`, `EKS`, `AKS` etc.)
3434
- Platform Version: (e.g. `1.20.3`, `4.7.0`)
35-
- PGO Image Tag: (e.g. `ubi8-5.0.0-0`)
35+
- PGO Image Tag: (e.g. `ubi8-5.0.1-0`)
3636
- Postgres Version (e.g. `13`)
3737
- Storage: (e.g. `hostpath`, `nfs`, or the name of your storage class)
3838
- Number of Postgres clusters: (`XYZ`)

config/default/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ bases:
1111
images:
1212
- name: postgres-operator
1313
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator
14-
newTag: ubi8-5.0.0-0
14+
newTag: ubi8-5.0.1-0

config/manager/manager.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ spec:
1414
- name: CRUNCHY_DEBUG
1515
value: "true"
1616
- name: RELATED_IMAGE_POSTGRES_13
17-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-ha:centos8-13.3-0"
17+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-ha:centos8-13.3-1"
1818
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.1
19-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis-ha:centos8-13.3-3.1-0"
19+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis-ha:centos8-13.3-3.1-1"
2020
- name: RELATED_IMAGE_PGBACKREST
21-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.33-0"
21+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.33-1"
2222
- name: RELATED_IMAGE_PGBOUNCER
23-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-0"
23+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-1"
2424
- name: RELATED_IMAGE_PGEXPORTER
25-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.0-0"
25+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.1-0"
2626
securityContext:
2727
allowPrivilegeEscalation: false
2828
readOnlyRootFilesystem: true

config/singlenamespace/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ patches:
1414
images:
1515
- name: postgres-operator
1616
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator
17-
newTag: ubi8-5.0.0-0
17+
newTag: ubi8-5.0.1-0

docs/content/installation/helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ For instance, it might be necessary to customize the image tags that are utilize
3939
```yaml
4040
image:
4141
repository: registry.developers.crunchydata.com/crunchydata
42-
tag: "ubi8-5.0.0-0"
42+
tag: "ubi8-5.0.1-0"
4343
```
4444
4545
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
@@ -39,7 +39,7 @@ in the `kustomize/install/bases/kustomization.yaml` file can be modified:
3939
images:
4040
- name: postgres-operator
4141
newName: registry.developers.crunchydata.com/crunchydata
42-
newTag: ubi8-5.0.0-0
42+
newTag: ubi8-5.0.1-0
4343
```
4444
4545
Additionally, please note that the Kustomize install project will also create a namespace for PGO

docs/content/tutorial/monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The only required attribute for adding the Exporter sidecar is to set `spec.moni
2121
monitoring:
2222
pgmonitor:
2323
exporter:
24-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.0-0
24+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.1-0
2525
```
2626

2727
Save your changes and run:

examples/helm/create-cluster/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name: postgrescluster
33
description: A Helm chart for Kubernetes
44
type: application
55
version: 0.1.0
6-
appVersion: 5.0.0
6+
appVersion: 5.0.1

examples/postgrescluster/postgrescluster.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: PostgresCluster
33
metadata:
44
name: hippo
55
spec:
6-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-ha:centos8-13.3-0
6+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-ha:centos8-13.3-1
77
postgresVersion: 13
88
instances:
99
- name: instance1
@@ -15,7 +15,7 @@ spec:
1515
storage: 1Gi
1616
backups:
1717
pgbackrest:
18-
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.33-0
18+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.33-1
1919
repoHost:
2020
dedicated: {}
2121
repos:
@@ -37,4 +37,4 @@ spec:
3737
storage: 1Gi
3838
proxy:
3939
pgBouncer:
40-
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-0
40+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-1

0 commit comments

Comments
 (0)