Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix etcd image for tests #280

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci/integration_test
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ function run_test_on_cluster() {
setup-aws-infrastructure
fi

export ETCD_VERSION=${ETCD_VERSION:-"v3.3.17"}
export ETCD_VERSION=${ETCD_VERSION:-"v3.4.13"}
echo "Etcd version: ${ETCD_VERSION}"

export ETCDBR_VERSION=${ETCDBR_VERSION:-${ETCDBR_VER:-"v0.9.1"}}
export ETCDBR_VERSION=${ETCDBR_VERSION:-${ETCDBR_VER:-"v0.10.0"}}
echo "Etcd-backup-restore version: ${ETCDBR_VERSION}"

echo "Starting integration tests on k8s cluster."
Expand Down
4 changes: 2 additions & 2 deletions .ci/performance_regression_test
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ if [ "$PERF_TEST_KUBECONFIG" == "" ]; then
PERF_TEST_KUBECONFIG=$TM_KUBECONFIG_PATH/shoot.config
fi

ETCD_VERSION=${ETCD_VERSION:-"v3.3.17"}
ETCD_VERSION=${ETCD_VERSION:-"v3.4.13"}
if [ "$ETCD_VERSION" != "" ]; then
ETCD_IMAGE=${ETCD_IMAGE:-"quay.io/coreos/etcd:$ETCD_VERSION"}
ETCD_IMAGE=${ETCD_IMAGE:-"eu.gcr.io/gardener-project/gardener/etcd:$ETCD_VERSION"}
fi

if [ "$ETCDBR_VERSION" != "" ]; then
Expand Down
5 changes: 2 additions & 3 deletions chart/etcd-backup-restore/values.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
images:
# etcd image to use
etcd:
# repository: quay.io/coreos/etcd
repository: gcr.io/etcd-development/etcd
tag: v3.3.17
repository: eu.gcr.io/gardener-project/gardener/etcd
tag: v3.4.13
pullPolicy: IfNotPresent
# etcd-backup-restore image to use
etcdBackupRestore:
Expand Down