From 456d2ec8e3bcd014bcbceba6cafe39fe11fcb7d6 Mon Sep 17 00:00:00 2001 From: Felix Kunde <felix-kunde@gmx.de> Date: Fri, 22 Oct 2021 15:04:07 +0200 Subject: [PATCH] using spilo 14 e2e images --- e2e/run.sh | 2 +- e2e/tests/test_e2e.py | 4 ++-- manifests/complete-postgres-manifest.yaml | 2 +- manifests/minimal-postgres-manifest-12.yaml | 2 +- manifests/minimal-postgres-manifest.yaml | 2 +- manifests/standby-manifest.yaml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/e2e/run.sh b/e2e/run.sh index 2d570877..39d85f07 100755 --- a/e2e/run.sh +++ b/e2e/run.sh @@ -8,7 +8,7 @@ IFS=$'\n\t' readonly cluster_name="postgres-operator-e2e-tests" readonly kubeconfig_path="/tmp/kind-config-${cluster_name}" -readonly spilo_image="registry.opensource.zalan.do/acid/spilo-13-e2e:0.3" +readonly spilo_image="registry.opensource.zalan.do/acid/spilo-14-e2e:0.1" readonly e2e_test_runner_image="registry.opensource.zalan.do/acid/postgres-operator-e2e-tests-runner:0.3" export GOPATH=${GOPATH-~/go} diff --git a/e2e/tests/test_e2e.py b/e2e/tests/test_e2e.py index 283f6b94..e28e3e08 100644 --- a/e2e/tests/test_e2e.py +++ b/e2e/tests/test_e2e.py @@ -11,8 +11,8 @@ from kubernetes import client from tests.k8s_api import K8s from kubernetes.client.rest import ApiException -SPILO_CURRENT = "registry.opensource.zalan.do/acid/spilo-13-e2e:0.3" -SPILO_LAZY = "registry.opensource.zalan.do/acid/spilo-13-e2e:0.4" +SPILO_CURRENT = "registry.opensource.zalan.do/acid/spilo-14-e2e:0.1" +SPILO_LAZY = "registry.opensource.zalan.do/acid/spilo-14-e2e:0.2" def to_selector(labels): diff --git a/manifests/complete-postgres-manifest.yaml b/manifests/complete-postgres-manifest.yaml index 436304d2..fd3f903a 100644 --- a/manifests/complete-postgres-manifest.yaml +++ b/manifests/complete-postgres-manifest.yaml @@ -36,7 +36,7 @@ spec: defaultRoles: true defaultUsers: false postgresql: - version: "13" + version: "14" parameters: # Expert section shared_buffers: "32MB" max_connections: "10" diff --git a/manifests/minimal-postgres-manifest-12.yaml b/manifests/minimal-postgres-manifest-12.yaml index bf62c379..3f89b765 100644 --- a/manifests/minimal-postgres-manifest-12.yaml +++ b/manifests/minimal-postgres-manifest-12.yaml @@ -18,4 +18,4 @@ spec: preparedDatabases: bar: {} postgresql: - version: "13" + version: "12" diff --git a/manifests/minimal-postgres-manifest.yaml b/manifests/minimal-postgres-manifest.yaml index ff96e392..f0c5ff4b 100644 --- a/manifests/minimal-postgres-manifest.yaml +++ b/manifests/minimal-postgres-manifest.yaml @@ -18,4 +18,4 @@ spec: preparedDatabases: bar: {} postgresql: - version: "13" + version: "14" diff --git a/manifests/standby-manifest.yaml b/manifests/standby-manifest.yaml index 593f409e..3ba8d6b9 100644 --- a/manifests/standby-manifest.yaml +++ b/manifests/standby-manifest.yaml @@ -9,7 +9,7 @@ spec: size: 1Gi numberOfInstances: 1 postgresql: - version: "13" + version: "14" # Make this a standby cluster and provide the s3 bucket path of source cluster for continuous streaming. standby: s3_wal_path: "s3://path/to/bucket/containing/wal/of/source/cluster/" -- GitLab