Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -4,5 +4,5 @@ description: Installer for PGO, the open source Postgres Operator from Crunchy D

type: application
# The version below should match the version on the PostgresCluster CRD
version: 5.8.3
appVersion: 5.8.3
version: 5.8.4
appVersion: 5.8.4
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: crunchybridgeclusters.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: pgadmins.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down Expand Up @@ -2577,6 +2575,9 @@ spec:
majorVersion:
description: MajorVersion represents the major version of the running pgAdmin.
type: integer
minorVersion:
description: MinorVersion represents the minor version of the running pgAdmin.
type: string
observedGeneration:
description: observedGeneration represents the .metadata.generation on which the status was based.
format: int64
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: pgupgrades.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down Expand Up @@ -926,7 +924,7 @@ spec:
fromPostgresVersion:
description: The major version of PostgreSQL before the upgrade.
format: int32
maximum: 17
maximum: 18
minimum: 11
type: integer
image:
Expand Down Expand Up @@ -1056,7 +1054,7 @@ spec:
toPostgresVersion:
description: The major version of PostgreSQL to be upgraded to.
format: int32
maximum: 17
maximum: 18
minimum: 11
type: integer
tolerations:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: postgresclusters.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down Expand Up @@ -12173,7 +12171,7 @@ spec:
type: string
postgresVersion:
description: The major version of PostgreSQL installed in the PostgreSQL image
maximum: 17
maximum: 18
minimum: 11
type: integer
proxy:
Expand Down
2 changes: 1 addition & 1 deletion helm/install/templates/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ spec:
{{- if .Values.affinity }}
affinity:
{{- toYaml .Values.affinity | nindent 8 }}
{{- end }}
{{- end }}
32 changes: 19 additions & 13 deletions helm/install/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,40 @@
# controllerImages are used to run the operator's controllers.
# The cluster image defined below runs the PostgresCluster and PGUpgrade controllers.
controllerImages:
cluster: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi9-5.8.3-0
cluster: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi9-5.8.4-0

# relatedImages are used when an image is omitted from PostgresCluster, PGAdmin or PGUpgrade specs.
relatedImages:
postgres_18:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi9-18.0-2542
postgres_18_gis_3.6:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-18.0-3.6-2542
postgres_17:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi9-17.6-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi9-17.6-2542
postgres_17_gis_3.6:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-17.6-3.6-2542
postgres_17_gis_3.5:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-17.6-3.5-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-17.6-3.5-2542
postgres_17_gis_3.4:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-17.6-3.4-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-17.6-3.4-2542
postgres_16:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi9-16.10-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi9-16.10-2542
postgres_16_gis_3.4:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-16.10-3.4-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-16.10-3.4-2542
postgres_16_gis_3.3:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-16.10-3.3-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi9-16.10-3.3-2542
pgbackrest:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi9-2.56.0-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi9-2.56.0-2542
pgbouncer:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi9-1.24-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi9-1.24-2542
pgexporter:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi9-0.17.1-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi9-0.17.1-2542
pgupgrade:
image: registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi9-17.6-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi9-18.0-2542
standalone_pgadmin:
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi9-9.2-2534
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi9-9.8-2542
collector:
image: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi9-5.8.3-0
image: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi9-5.8.4-0

# singleNamespace controls where PGO watches for PostgresClusters. When false,
# PGO watches for and responds to PostgresClusters in all namespaces. When true,
Expand Down
39 changes: 27 additions & 12 deletions kustomize/install/components/images-by-tag/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,52 @@ kind: Component
images:
- name: image-pgadmin
newName: registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4
newTag: ubi9-9.2-2534
newTag: ubi9-9.8-2542
- name: image-pgbackrest
newName: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest
newTag: ubi9-2.56.0-2534
newTag: ubi9-2.56.0-2542
- name: image-pgbouncer
newName: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer
newTag: ubi9-1.24-2534
newTag: ubi9-1.24-2542
- name: image-postgres-exporter
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter
newTag: ubi9-0.17.1-2534
newTag: ubi9-0.17.1-2542
- name: image-postgres-operator-5.8
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator
newTag: ubi9-5.8.3-0
newTag: ubi9-5.8.4-0
- name: image-crunchy-postgres-15
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres
newTag: ubi9-15.14-2542
- name: image-crunchy-postgres-16
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres
newTag: ubi9-16.10-2534
newTag: ubi9-16.10-2542
- name: image-crunchy-postgres-17
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres
newTag: ubi9-17.6-2534
newTag: ubi9-17.6-2542
- name: image-crunchy-postgres-18
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres
newTag: ubi9-18.0-2542
- name: image-crunchy-upgrade
newName: registry.developers.crunchydata.com/crunchydata/crunchy-upgrade
newTag: ubi9-17.6-2534
newTag: ubi9-18.0-2542
- name: image-crunchy-postgres-15-gis-3.3
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis
newTag: ubi9-15.14-3.3-2542
- name: image-crunchy-postgres-16-gis-3.3
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis
newTag: ubi9-16.10-3.3-2534
newTag: ubi9-16.10-3.3-2542
- name: image-crunchy-postgres-16-gis-3.4
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis
newTag: ubi9-16.10-3.4-2534
newTag: ubi9-16.10-3.4-2542
- name: image-crunchy-postgres-17-gis-3.4
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis
newTag: ubi9-17.6-3.4-2534
newTag: ubi9-17.6-3.4-2542
- name: image-crunchy-postgres-17-gis-3.5
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis
newTag: ubi9-17.6-3.5-2534
newTag: ubi9-17.6-3.5-2542
- name: image-crunchy-postgres-17-gis-3.6
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis
newTag: ubi9-17.6-3.6-2542
- name: image-crunchy-postgres-18-gis-3.6
newName: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis
newTag: ubi9-18.0-3.6-2542
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: crunchybridgeclusters.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: pgadmins.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down Expand Up @@ -2577,6 +2575,9 @@ spec:
majorVersion:
description: MajorVersion represents the major version of the running pgAdmin.
type: integer
minorVersion:
description: MinorVersion represents the minor version of the running pgAdmin.
type: string
observedGeneration:
description: observedGeneration represents the .metadata.generation on which the status was based.
format: int64
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: pgupgrades.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down Expand Up @@ -926,7 +924,7 @@ spec:
fromPostgresVersion:
description: The major version of PostgreSQL before the upgrade.
format: int32
maximum: 17
maximum: 18
minimum: 11
type: integer
image:
Expand Down Expand Up @@ -1056,7 +1054,7 @@ spec:
toPostgresVersion:
description: The major version of PostgreSQL to be upgraded to.
format: int32
maximum: 17
maximum: 18
minimum: 11
type: integer
tolerations:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.17.2
name: postgresclusters.postgres-operator.crunchydata.com
labels:
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
spec:
group: postgres-operator.crunchydata.com
names:
Expand Down Expand Up @@ -12173,7 +12171,7 @@ spec:
type: string
postgresVersion:
description: The major version of PostgreSQL installed in the PostgreSQL image
maximum: 17
maximum: 18
minimum: 11
type: integer
proxy:
Expand Down
2 changes: 1 addition & 1 deletion kustomize/install/default/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ labels:
includeTemplates: true
pairs:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
- includeSelectors: true
includeTemplates: true
pairs:
Expand Down
6 changes: 6 additions & 0 deletions kustomize/install/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ spec:
value: image-crunchy-postgres-17-gis-3.4
- name: RELATED_IMAGE_POSTGRES_17_GIS_3.5
value: image-crunchy-postgres-17-gis-3.5
- name: RELATED_IMAGE_POSTGRES_17_GIS_3.6
value: image-crunchy-postgres-17-gis-3.6
- name: RELATED_IMAGE_POSTGRES_18
value: image-crunchy-postgres-18
- name: RELATED_IMAGE_POSTGRES_18_GIS_3.6
value: image-crunchy-postgres-18-gis-3.6
- name: RELATED_IMAGE_PGBACKREST
value: image-pgbackrest
- name: RELATED_IMAGE_PGBOUNCER
Expand Down
2 changes: 1 addition & 1 deletion kustomize/install/singlenamespace/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ labels:
includeTemplates: true
pairs:
app.kubernetes.io/name: pgo
app.kubernetes.io/version: 5.8.3
app.kubernetes.io/version: 5.8.4
- includeSelectors: true
includeTemplates: true
pairs:
Expand Down