load spilo test image

This commit is contained in:
Felix Kunde 2020-04-17 10:06:21 +02:00
parent 5b628e7e5f
commit 3548297188
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,7 @@ cd $(dirname "$0");
readonly cluster_name="postgres-operator-e2e-tests" readonly cluster_name="postgres-operator-e2e-tests"
readonly kubeconfig_path="/tmp/kind-config-${cluster_name}" readonly kubeconfig_path="/tmp/kind-config-${cluster_name}"
readonly spilo_test_image="registry.opensource.zalan.do/acid/spilo-cdp-12:1.6-p16"
function pull_images(){ function pull_images(){
@ -38,6 +39,7 @@ function start_kind(){
kind create cluster --name ${cluster_name} --config kind-cluster-postgres-operator-e2e-tests.yaml kind create cluster --name ${cluster_name} --config kind-cluster-postgres-operator-e2e-tests.yaml
kind load docker-image "${operator_image}" --name ${cluster_name} kind load docker-image "${operator_image}" --name ${cluster_name}
kind load docker-image "${e2e_test_image}" --name ${cluster_name} kind load docker-image "${e2e_test_image}" --name ${cluster_name}
kind load docker-image "${spilo_test_image}" --name ${cluster_name}
KUBECONFIG="$(kind get kubeconfig-path --name=${cluster_name})" KUBECONFIG="$(kind get kubeconfig-path --name=${cluster_name})"
export KUBECONFIG export KUBECONFIG
} }

View File

@ -19,7 +19,7 @@ class EndToEndTestCase(unittest.TestCase):
''' '''
# `kind` pods may stuck in the `Terminating` phase for a few minutes; hence high test timeout # `kind` pods may stuck in the `Terminating` phase for a few minutes; hence high test timeout
TEST_TIMEOUT_SEC = 1000 TEST_TIMEOUT_SEC = 600
@classmethod @classmethod
@timeout_decorator.timeout(TEST_TIMEOUT_SEC) @timeout_decorator.timeout(TEST_TIMEOUT_SEC)