You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wi...@apache.org on 2020/06/27 09:00:15 UTC

[couchdb-helm] 39/43: Fix tests

This is an automated email from the ASF dual-hosted git repository.

willholley pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git

commit 89ca413ab4e4dbc1984e754f47bca4b8be0cfd8b
Author: Will Holley <wi...@uk.ibm.com>
AuthorDate: Wed Jun 3 10:57:41 2020 +0100

    Fix tests
    
    Kind 0.8 has compatibility problems when using older node images.
    This forces Kind to use the v1.18.2 image built using Kind 0.8,
    fixing the tests.
    
    Without this, you may find that CoreDNS crashes continuously,
    resulting in CouchDB nodes not being able to discover each other.
---
 test/e2e-kind.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/e2e-kind.sh b/test/e2e-kind.sh
index 6fe31c2..5a4156c 100755
--- a/test/e2e-kind.sh
+++ b/test/e2e-kind.sh
@@ -5,9 +5,9 @@ set -o nounset
 set -o pipefail
 
 readonly CT_VERSION=v3.0.0-rc.1
-readonly KIND_VERSION=v0.7.0
+readonly KIND_VERSION=v0.8.0
 readonly CLUSTER_NAME=chart-testing
-readonly K8S_VERSION=v1.17.0
+readonly K8S_VERSION=v1.18.2@sha256:7b27a6d0f2517ff88ba444025beae41491b016bc6af573ba467b70c5e8e0d85f
 
 run_ct_container() {
     echo 'Running ct container...'