Skip to content

Commit 7ac9c2a

Browse files
Lxrdknows77Oleg Galantsev
andauthored
Bump spilo-14:2.1-p4 (zalando#1836)
Co-authored-by: Oleg Galantsev <[email protected]>
1 parent 0dc370f commit 7ac9c2a

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ We introduce the major version into the backup path to smoothen the [major versi
6161
The new operator configuration can set a compatibility flag *enable_spilo_wal_path_compat* to make Spilo look for wal segments in the current path but also old format paths.
6262
This comes at potential performance costs and should be disabled after a few days.
6363

64-
The newest Spilo image is: `registry.opensource.zalan.do/acid/spilo-14:2.1-p3`
64+
The newest Spilo image is: `registry.opensource.zalan.do/acid/spilo-14:2.1-p4`
6565

6666
The last Spilo 12 image is: `registry.opensource.zalan.do/acid/spilo-12:1.6-p5`
6767

charts/postgres-operator/crds/operatorconfigurations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ spec:
6868
type: string
6969
docker_image:
7070
type: string
71-
default: "registry.opensource.zalan.do/acid/spilo-14:2.1-p3"
71+
default: "registry.opensource.zalan.do/acid/spilo-14:2.1-p4"
7272
enable_crd_registration:
7373
type: boolean
7474
default: true

charts/postgres-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ configGeneral:
3838
# Select if setup uses endpoints (default), or configmaps to manage leader (DCS=k8s)
3939
# kubernetes_use_configmaps: false
4040
# Spilo docker image
41-
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p3
41+
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p4
4242
# min number of instances in Postgres cluster. -1 = no limit
4343
min_instances: -1
4444
# max 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
@@ -10,7 +10,7 @@ metadata:
1010
# "delete-date": "2020-08-31" # can only be deleted on that day if "delete-date "key is configured
1111
# "delete-clustername": "acid-test-cluster" # can only be deleted when name matches if "delete-clustername" key is configured
1212
spec:
13-
dockerImage: registry.opensource.zalan.do/acid/spilo-14:2.1-p3
13+
dockerImage: registry.opensource.zalan.do/acid/spilo-14:2.1-p4
1414
teamId: "acid"
1515
numberOfInstances: 2
1616
users: # Application/Robot users

manifests/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ data:
3434
# default_memory_request: 100Mi
3535
# delete_annotation_date_key: delete-date
3636
# delete_annotation_name_key: delete-clustername
37-
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p3
37+
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p4
3838
# downscaler_annotations: "deployment-time,downscaler/*"
3939
# enable_admin_role_for_users: "true"
4040
# enable_crd_registration: "true"

manifests/operatorconfiguration.crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ spec:
6666
type: string
6767
docker_image:
6868
type: string
69-
default: "registry.opensource.zalan.do/acid/spilo-14:2.1-p3"
69+
default: "registry.opensource.zalan.do/acid/spilo-14:2.1-p4"
7070
enable_crd_registration:
7171
type: boolean
7272
default: true

manifests/postgresql-operator-default-configuration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: OperatorConfiguration
33
metadata:
44
name: postgresql-operator-default-configuration
55
configuration:
6-
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p3
6+
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p4
77
# enable_crd_registration: true
88
# crd_categories:
99
# - all

pkg/controller/operator_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func (c *Controller) importConfigurationFromCRD(fromCRD *acidv1.OperatorConfigur
3838
result.EnableSpiloWalPathCompat = fromCRD.EnableSpiloWalPathCompat
3939
result.EtcdHost = fromCRD.EtcdHost
4040
result.KubernetesUseConfigMaps = fromCRD.KubernetesUseConfigMaps
41-
result.DockerImage = util.Coalesce(fromCRD.DockerImage, "registry.opensource.zalan.do/acid/spilo-14:2.1-p3")
41+
result.DockerImage = util.Coalesce(fromCRD.DockerImage, "registry.opensource.zalan.do/acid/spilo-14:2.1-p4")
4242
result.Workers = util.CoalesceUInt32(fromCRD.Workers, 8)
4343
result.MinInstances = fromCRD.MinInstances
4444
result.MaxInstances = fromCRD.MaxInstances

pkg/util/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ type Config struct {
161161
WatchedNamespace string `name:"watched_namespace"` // special values: "*" means 'watch all namespaces', the empty string "" means 'watch a namespace where operator is deployed to'
162162
KubernetesUseConfigMaps bool `name:"kubernetes_use_configmaps" default:"false"`
163163
EtcdHost string `name:"etcd_host" default:""` // special values: the empty string "" means Patroni will use K8s as a DCS
164-
DockerImage string `name:"docker_image" default:"registry.opensource.zalan.do/acid/spilo-14:2.1-p3"`
164+
DockerImage string `name:"docker_image" default:"registry.opensource.zalan.do/acid/spilo-14:2.1-p4"`
165165
SidecarImages map[string]string `name:"sidecar_docker_images"` // deprecated in favour of SidecarContainers
166166
SidecarContainers []v1.Container `name:"sidecars"`
167167
PodServiceAccountName string `name:"pod_service_account_name" default:"postgres-pod"`

0 commit comments

Comments
 (0)