Skip to content

Commit e2a9b03

Browse files
authored
bump spilo version to latest release (zalando#836)
1 parent 742d733 commit e2a9b03

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

charts/postgres-operator/values-crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ configGeneral:
2424
# etcd connection string for Patroni. Empty uses K8s-native DCS.
2525
etcd_host: ""
2626
# Spilo docker image
27-
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-12:1.6-p16
27+
docker_image: registry.opensource.zalan.do/acid/spilo-12:1.6-p2
2828
# max number of instances in Postgres cluster. -1 = no limit
2929
min_instances: -1
3030
# min number of instances in Postgres cluster. -1 = no limit

charts/postgres-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ configGeneral:
2424
# etcd connection string for Patroni. Empty uses K8s-native DCS.
2525
etcd_host: ""
2626
# Spilo docker image
27-
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-12:1.6-p16
27+
docker_image: registry.opensource.zalan.do/acid/spilo-12:1.6-p2
2828
# max number of instances in Postgres cluster. -1 = no limit
2929
min_instances: "-1"
3030
# min number of instances in Postgres cluster. -1 = no limit

manifests/complete-postgres-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
# labels:
66
# environment: demo
77
spec:
8-
dockerImage: registry.opensource.zalan.do/acid/spilo-cdp-12:1.6-p16
8+
dockerImage: registry.opensource.zalan.do/acid/spilo-12:1.6-p2
99
teamId: "acid"
1010
volume:
1111
size: 1Gi

manifests/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ data:
1919
# default_cpu_request: 100m
2020
# default_memory_limit: 500Mi
2121
# default_memory_request: 100Mi
22-
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-12:1.6-p16
22+
docker_image: registry.opensource.zalan.do/acid/spilo-12:1.6-p2
2323
# enable_admin_role_for_users: "true"
2424
# enable_crd_validation: "true"
2525
# enable_database_access: "true"

manifests/postgresql-operator-default-configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
configuration:
66
# enable_crd_validation: true
77
etcd_host: ""
8-
docker_image: registry.opensource.zalan.do/acid/spilo-cdp-12:1.6-p16
8+
docker_image: registry.opensource.zalan.do/acid/spilo-12:1.6-p2
99
# enable_shm_volume: true
1010
max_instances: -1
1111
min_instances: -1

pkg/util/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ type Config struct {
9393

9494
WatchedNamespace string `name:"watched_namespace"` // special values: "*" means 'watch all namespaces', the empty string "" means 'watch a namespace where operator is deployed to'
9595
EtcdHost string `name:"etcd_host" default:""` // special values: the empty string "" means Patroni will use K8s as a DCS
96-
DockerImage string `name:"docker_image" default:"registry.opensource.zalan.do/acid/spilo-cdp-12:1.6-p16"`
96+
DockerImage string `name:"docker_image" default:"registry.opensource.zalan.do/acid/spilo-12:1.6-p2"`
9797
Sidecars map[string]string `name:"sidecar_docker_images"`
9898
// default name `operator` enables backward compatibility with the older ServiceAccountName field
9999
PodServiceAccountName string `name:"pod_service_account_name" default:"postgres-pod"`

0 commit comments

Comments
 (0)