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/01/06 10:34:12 UTC

[couchdb-helm] 07/26: Address review comments

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 3e2f02e83db6c58445eced4292daf3856b135019
Author: Will Holley <wi...@gmail.com>
AuthorDate: Mon Oct 28 09:12:45 2019 +0000

    Address review comments
---
 README.md              |   3 +--
 couchdb/Chart.yaml     |   2 ++
 docs/couchdb-2.2.0.tgz | Bin 7337 -> 7354 bytes
 docs/index.yaml        |   8 +++++---
 test/e2e-kind.sh       |   7 ++-----
 5 files changed, 10 insertions(+), 10 deletions(-)

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