Skip to content

Commit c895e8f

Browse files
Bumped Spilo 14 image tag to 2.1-p7 (#2096)
* Bumped Spilo 14 image tag to 2.1-p7 Co-authored-by: yoshihiko <ariyoshi10@gmail.com>
1 parent 18908e6 commit c895e8f

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-p6`
64+
The newest Spilo image is: `registry.opensource.zalan.do/acid/spilo-14:2.1-p7`
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-p6"
71+
default: "registry.opensource.zalan.do/acid/spilo-14:2.1-p7"
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
# etcd connection string for Patroni. Empty uses K8s-native DCS.
3939
etcd_host: ""
4040
# Spilo docker image
41-
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p6
41+
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p7
4242

4343
# key name for annotation to ignore globally configured instance limits
4444
# ignore_instance_limits_annotation_key: ""

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-p6
13+
dockerImage: registry.opensource.zalan.do/acid/spilo-14:2.1-p7
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-p6
37+
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p7
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-p6"
69+
default: "registry.opensource.zalan.do/acid/spilo-14:2.1-p7"
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-p6
6+
docker_image: registry.opensource.zalan.do/acid/spilo-14:2.1-p7
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
@@ -39,7 +39,7 @@ func (c *Controller) importConfigurationFromCRD(fromCRD *acidv1.OperatorConfigur
3939
result.EnableTeamIdClusternamePrefix = fromCRD.EnableTeamIdClusternamePrefix
4040
result.EtcdHost = fromCRD.EtcdHost
4141
result.KubernetesUseConfigMaps = fromCRD.KubernetesUseConfigMaps
42-
result.DockerImage = util.Coalesce(fromCRD.DockerImage, "registry.opensource.zalan.do/acid/spilo-14:2.1-p6")
42+
result.DockerImage = util.Coalesce(fromCRD.DockerImage, "registry.opensource.zalan.do/acid/spilo-14:2.1-p7")
4343
result.Workers = util.CoalesceUInt32(fromCRD.Workers, 8)
4444
result.MinInstances = fromCRD.MinInstances
4545
result.MaxInstances = fromCRD.MaxInstances

pkg/util/config/config.go

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

0 commit comments

Comments
 (0)