diff --git a/e2e/tests/test_e2e.py b/e2e/tests/test_e2e.py index 26acd0b28..55aa54d01 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.2" -SPILO_LAZY = "registry.opensource.zalan.do/acid/spilo-13-e2e:0.1" +SPILO_CURRENT = "registry.opensource.zalan.do/acid/spilo-13-e2e:0.1" +SPILO_LAZY = "registry.opensource.zalan.do/acid/spilo-13-e2e:0.2" def to_selector(labels): @@ -112,6 +112,7 @@ class EndToEndTestCase(unittest.TestCase): with open("manifests/configmap.yaml", 'r+') as f: configmap = yaml.safe_load(f) configmap["data"]["workers"] = "1" + configmap["data"]["docker_image"] = SPILO_CURRENT with open("manifests/configmap.yaml", 'w') as f: yaml.dump(configmap, f, Dumper=yaml.Dumper) @@ -121,7 +122,6 @@ class EndToEndTestCase(unittest.TestCase): "operatorconfiguration.crd.yaml", "postgresteam.crd.yaml", "configmap.yaml", - "postgresql-operator-default-configuration.yaml", "postgres-operator.yaml", "api-service.yaml", "infrastructure-roles.yaml",