diff --git a/README.md b/README.md index a70af73..3bfca11 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,7 @@ This repository contains assets related to the CouchDB Helm chart. ## Testing -`make test` will run an integration test using [Kind][5]. This stands up a Kubernetes cluster locally and ensures the chart will -deploy using the default options and Helm. +`make test` will run an integration test using [Kind][5]. This stands up a Kubernetes cluster locally and ensures the chart will deploy using the default options and Helm. ## Releasing diff --git a/couchdb/Chart.yaml b/couchdb/Chart.yaml index 1d33948..a4519e4 100644 --- a/couchdb/Chart.yaml +++ b/couchdb/Chart.yaml @@ -15,4 +15,6 @@ sources: maintainers: - name: kocolosk email: kocolosk@apache.org + - name: willholley + email: willholley@apache.org icon: http://couchdb.apache.org/CouchDB-visual-identity/logo/CouchDB-couch-symbol.svg diff --git a/docs/couchdb-2.2.0.tgz b/docs/couchdb-2.2.0.tgz index f58cc55..5bf2044 100644 Binary files a/docs/couchdb-2.2.0.tgz and b/docs/couchdb-2.2.0.tgz differ diff --git a/docs/index.yaml b/docs/index.yaml index 6be4b54..28b731f 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -3,10 +3,10 @@ entries: couchdb: - apiVersion: v1 appVersion: 2.3.1 - created: 2019-10-22T14:09:08.422421+01:00 + created: 2019-10-28T09:24:10.747431Z description: A database featuring seamless multi-master sync, that scales from big data to mobile, with an intuitive HTTP/JSON API and designed for reliability. - digest: d4ec1447c437f26418db46de4b7fe7be928f7341b62915ef263350578c95cf12 + digest: f68e6187c2b65a02fdde9d49ec38e76a68c3d82421e5ea9e599bac87f4193c6a home: https://couchdb.apache.org/ icon: http://couchdb.apache.org/CouchDB-visual-identity/logo/CouchDB-couch-symbol.svg keywords: @@ -16,10 +16,12 @@ entries: maintainers: - email: kocolosk@apache.org name: kocolosk + - email: willholley@apache.org + name: willholley name: couchdb sources: - https://github.com/apache/couchdb-docker urls: - https://apache.github.io/couchdb-helm/couchdb-2.2.0.tgz version: 2.2.0 -generated: 2019-10-22T14:09:08.421343+01:00 +generated: 2019-10-28T09:24:10.746176Z diff --git a/test/e2e-kind.sh b/test/e2e-kind.sh index 59c1dbe..4301343 100755 --- a/test/e2e-kind.sh +++ b/test/e2e-kind.sh @@ -35,11 +35,8 @@ docker_exec() { create_kind_cluster() { if ! [ -x "$(command -v kind)" ]; then - echo 'Installing kind...' - - curl -sSLo kind "https://github.com/kubernetes-sigs/kind/releases/download/$KIND_VERSION/kind-linux-amd64" - chmod +x kind - sudo mv kind /usr/local/bin/kind + echo 'kind not found. See https://kind.sigs.k8s.io/ for installation instructions.' + exit fi kind delete cluster --name "$CLUSTER_NAME" || true