Add namespace to finish_cluster command. (#5301)

* Add namespace to finish_cluster command.

* Bump version.
This commit is contained in:
Tyler Roscoe
2018-05-17 05:59:51 -07:00
committed by k8s-ci-robot
parent 31dbce94f9
commit 4170eccb6c
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: couchdb
version: 0.1.2
version: 0.1.3
appVersion: 2.1.1
description: A database featuring seamless multi-master sync, that scales from
big data to mobile, with an intuitive HTTP/JSON API and designed for
+2 -1
View File
@@ -5,7 +5,8 @@ Apache CouchDB is starting. Check the status of the Pods using:
Once all of the Pods are fully Ready, execute the following command to create
some required system databases:
kubectl exec {{ if not .Values.allowAdminParty }}-it {{ end }}{{ template "couchdb.fullname" . }}-0 -c couchdb -- curl -s \
kubectl exec --namespace {{ .Release.Namespace }} {{ if not .Values.allowAdminParty }}-it {{ end }}{{ template "couchdb.fullname" . }}-0 -c couchdb -- \
curl -s \
http://127.0.0.1:5984/_cluster_setup \
-X POST \
-H "Content-Type: application/json" \