From 4170eccb6cbb2de0c3d454533fa463e105c21f32 Mon Sep 17 00:00:00 2001 From: Tyler Roscoe Date: Thu, 17 May 2018 06:59:51 -0600 Subject: [PATCH] Add namespace to finish_cluster command. (#5301) * Add namespace to finish_cluster command. * Bump version. --- incubator/couchdb/Chart.yaml | 2 +- incubator/couchdb/templates/NOTES.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/incubator/couchdb/Chart.yaml b/incubator/couchdb/Chart.yaml index 2e9e8ad1e8..4a9e71dcd3 100644 --- a/incubator/couchdb/Chart.yaml +++ b/incubator/couchdb/Chart.yaml @@ -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 diff --git a/incubator/couchdb/templates/NOTES.txt b/incubator/couchdb/templates/NOTES.txt index 63b6436763..a3658bd37f 100644 --- a/incubator/couchdb/templates/NOTES.txt +++ b/incubator/couchdb/templates/NOTES.txt @@ -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" \