Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2d4b57d
added v5 pgadmin4 to related images for helm and kustomize installers…
ValClarkson Nov 2, 2021
d86ec89
Add namespace to operator through DownwardAPI
benjaminjb Nov 22, 2021
e6d1bb1
Add updated RBAC for PodDisruptionBudgets
jmckulk Dec 1, 2021
b611742
CRD Sync
jmckulk Dec 9, 2021
13f5c83
CRD Label Update
andrewlecuyer Dec 9, 2021
2c2cec2
Updates to Helm installer chart
Dec 10, 2021
850e369
Add pgupgrade to related images
cbandy Dec 9, 2021
3d98d5d
Make postgresVersion Helm variable required
Dec 10, 2021
df5e43a
Remove TODOs From CRDs
andrewlecuyer Dec 16, 2021
1906e30
Make the number of controller workers configurable
cbandy Feb 9, 2022
2fc7306
update examples from 5.0.4 to 5.0.5, updated kustomize examples
ValClarkson Feb 15, 2022
19b4b6b
Make the number of controller workers configurable
cbandy Feb 9, 2022
175c635
bump helm charge version for operator 5.0.5 release
ValClarkson Mar 3, 2022
f095052
Merge pull request #86 from ValClarkson/workerbackpatch
ValClarkson Mar 3, 2022
42487eb
Merge pull request #87 from ValClarkson/versionbump
ValClarkson Mar 3, 2022
d3f2449
Update CRD's to the Latest Revision
andrewlecuyer Feb 18, 2022
2765f06
updated images to correct pgversions and updated release items
ValClarkson Mar 28, 2022
de6ed6b
Merge pull request #102 from ValClarkson/vbump510
ValClarkson Mar 29, 2022
713a0f1
Update kustomize/install to bring in line with postgres-operator repo…
benjaminjb Mar 30, 2022
9c832b0
update crd to latest release and remove pgupgrade from
ValClarkson Mar 30, 2022
127368f
Merge pull request #103 from ValClarkson/crdupdate
ValClarkson Mar 30, 2022
df5d075
Change position of controller image value
cbandy Apr 4, 2022
629b3b2
Remove the status field from CRD YAML
cbandy Apr 4, 2022
74df255
Add upgrade controller to Helm install chart
cbandy Apr 7, 2022
f4a8d50
Add upgrade controller to Kustomize install
cbandy Apr 11, 2022
6e91c1d
Merge branch 'devel' into main
cbandy Apr 13, 2022
f8a0eb4
Enable seccomp on containers (#122)
benjaminjb May 10, 2022
1dbc51b
update to v5.1.1
ValClarkson May 16, 2022
538c499
Align Related Images in manager.yaml With OLM
andrewlecuyer May 18, 2022
12085b7
Revert "Enable seccomp on containers (#122)" (#126)
benjaminjb May 18, 2022
78c2d64
Helm Chart fix wrong dataSource key in postgres template
jfhenriques Mar 10, 2022
a53092a
updated for v5.1.2
ValClarkson Jul 12, 2022
c35b44b
Merge pull request #139 from ValClarkson/versionupdate
ValClarkson Jul 15, 2022
08365a9
Bump 5.1.2 to 5.1.3
jmckulk Aug 1, 2022
4b0501c
Merge pull request #147 from jmckulk/version_bump_5.1.3
jmckulk Aug 24, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm/install/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: pgo
description: Installer for PGO, the open source Postgres Operator from Crunchy Data

type: application
version: 0.3.1
appVersion: 5.1.1
version: 0.3.2
appVersion: 5.1.2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
name: pgupgrades.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.1.1
app.kubernetes.io/version: 5.1.2
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
name: postgresclusters.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.1.1
app.kubernetes.io/version: 5.1.2
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down
26 changes: 13 additions & 13 deletions helm/install/values.yaml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
---
# controllerImages are used to run the PostgresCluster and PGUpgrade controllers.
controllerImages:
cluster: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.1.1-0
upgrade: registry.developers.crunchydata.com/crunchydata/postgres-operator-upgrade:ubi8-5.1.1-0
cluster: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.1.2-0
upgrade: registry.developers.crunchydata.com/crunchydata/postgres-operator-upgrade:ubi8-5.1.2-0

# relatedImages are used when an image is omitted from PostgresCluster or PGUpgrade specs.
relatedImages:
postgres_14:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgres_14_gis_3.1:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.3-3.1-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.4-3.1-0
postgres_14_gis_3.2:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.3-3.2-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.4-3.2-0
postgres_13:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.7-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.7-1
postgres_13_gis_3.0:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.0-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.0-1
postgres_13_gis_3.1:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.1-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.1-1
pgadmin:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-2
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
pgbouncer:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-3
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-4
pgexporter:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.1-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.2-0
pgupgrade:
image: registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.1.1-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.1.2-0

# singleNamespace controls where PGO watches for PostgresClusters. When false,
# PGO watches for and responds to PostgresClusters in all namespaces. When true,
Expand Down
4 changes: 2 additions & 2 deletions helm/postgres/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: postgrescluster
description: A Helm chart for Kubernetes
type: application
version: 0.2.4
appVersion: 5.1.1
version: 0.2.5
appVersion: 5.1.2
8 changes: 4 additions & 4 deletions helm/postgres/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ postgresVersion: 14
# below value. "postgresVersion" needs to match the version of Postgres that is
# used here. If using the GIS-enabled Postgres image, you need to ensure
# "postGISVersion" matches the version of PostGIS used.
# imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.7-0
# imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.7-1

# imagePgBackRest is the pgBackRest backup utility image. This defaults to the
# below value.
# imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
# imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2

# imagePgBouncer is the image for the PgBouncer connection pooler. This defaults
# to the below value.
# imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-3
# imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-4

# imageExporter is the image name for the exporter used as a part of monitoring.
# This defaults to the value below.
# imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.1-0
# imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.2-0

###########################
# Basic Postgres Settings #
Expand Down
4 changes: 2 additions & 2 deletions kustomize/azure/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: hippo-azure
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
instances:
- dataVolumeClaimSpec:
Expand All @@ -14,7 +14,7 @@ spec:
storage: 1Gi
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
configuration:
- secret:
name: pgo-azure-creds
Expand Down
4 changes: 2 additions & 2 deletions kustomize/certmanager/postgres/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: hippo
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
customReplicationTLSSecret:
name: hippo-repl-tls
Expand All @@ -19,7 +19,7 @@ spec:
storage: 1Gi
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
repos:
- name: repo1
volume:
Expand Down
4 changes: 2 additions & 2 deletions kustomize/gcs/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: hippo-gcs
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
instances:
- dataVolumeClaimSpec:
Expand All @@ -14,7 +14,7 @@ spec:
storage: 1Gi
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
configuration:
- secret:
name: pgo-gcs-creds
Expand Down
6 changes: 3 additions & 3 deletions kustomize/high-availability/ha-postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: hippo-ha
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
instances:
- name: pgha1
Expand All @@ -26,7 +26,7 @@ spec:
postgres-operator.crunchydata.com/instance-set: pgha1
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
repos:
- name: repo1
volume:
Expand All @@ -38,7 +38,7 @@ spec:
storage: 1Gi
proxy:
pgBouncer:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-3
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-4
replicas: 2
affinity:
podAntiAffinity:
Expand Down
6 changes: 3 additions & 3 deletions kustomize/install/default/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace: postgres-operator

commonLabels:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.1.1
app.kubernetes.io/version: 5.1.2

bases:
- ../crd
Expand All @@ -12,10 +12,10 @@ bases:
images:
- name: postgres-operator
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator
newTag: ubi8-5.1.1-0
newTag: ubi8-5.1.2-0
- name: postgres-operator-upgrade
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator-upgrade
newTag: ubi8-5.1.1-0
newTag: ubi8-5.1.2-0

patchesJson6902:
- target: { group: apps, version: v1, kind: Deployment, name: pgo }
Expand Down
2 changes: 1 addition & 1 deletion kustomize/install/manager/manager-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
- name: CRUNCHY_DEBUG
value: "true"
- name: RELATED_IMAGE_PGUPGRADE
value: "registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.1.1-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.1.2-0"
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
Expand Down
20 changes: 10 additions & 10 deletions kustomize/install/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,25 @@ spec:
- name: CRUNCHY_DEBUG
value: "true"
- name: RELATED_IMAGE_POSTGRES_13
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.7-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.7-1"
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.0
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.0-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.0-1"
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.1
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.1-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.7-3.1-1"
- name: RELATED_IMAGE_POSTGRES_14
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0"
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.1
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.3-3.1-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.4-3.1-0"
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.2
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.3-3.2-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.4-3.2-0"
- name: RELATED_IMAGE_PGADMIN
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-1"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-2"
- name: RELATED_IMAGE_PGBACKREST
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2"
- name: RELATED_IMAGE_PGBOUNCER
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-3"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-4"
- name: RELATED_IMAGE_PGEXPORTER
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.1-0"
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.2-0"
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
Expand Down
6 changes: 3 additions & 3 deletions kustomize/install/singlenamespace/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace: postgres-operator

commonLabels:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.1.1
app.kubernetes.io/version: 5.1.2

bases:
- ../crd
Expand All @@ -12,10 +12,10 @@ bases:
images:
- name: postgres-operator
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator
newTag: ubi8-5.1.1-0
newTag: ubi8-5.1.2-0
- name: postgres-operator-upgrade
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator-upgrade
newTag: ubi8-5.1.1-0
newTag: ubi8-5.1.2-0

patchesJson6902:
- target: { group: apps, version: v1, kind: Deployment, name: pgo }
Expand Down
4 changes: 2 additions & 2 deletions kustomize/keycloak/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: keycloakdb
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
instances:
- replicas: 2
Expand All @@ -25,7 +25,7 @@ spec:
postgres-operator.crunchydata.com/instance-set: "00"
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
repos:
- name: repo1
volume:
Expand Down
4 changes: 2 additions & 2 deletions kustomize/multi-backup-repo/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: hippo-multi-repo
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
instances:
- dataVolumeClaimSpec:
Expand All @@ -14,7 +14,7 @@ spec:
storage: 1Gi
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
configuration:
- secret:
name: pgo-multi-repo-creds
Expand Down
4 changes: 2 additions & 2 deletions kustomize/postgres/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: hippo
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
instances:
- name: instance1
Expand All @@ -15,7 +15,7 @@ spec:
storage: 1Gi
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
repos:
- name: repo1
volume:
Expand Down
4 changes: 2 additions & 2 deletions kustomize/s3/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: PostgresCluster
metadata:
name: hippo-s3
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.3-0
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.4-0
postgresVersion: 14
instances:
- dataVolumeClaimSpec:
Expand All @@ -14,7 +14,7 @@ spec:
storage: 1Gi
backups:
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-1
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-2
configuration:
- secret:
name: pgo-s3-creds
Expand Down