add missing namespace to mongodb notes (#7216)

* add missing namespace to mongodb notes

* bump stable/mongodb chart version
This commit is contained in:
Eren Güven
2018-08-20 02:14:34 -07:00
committed by k8s-ci-robot
parent 08e28ea9d0
commit 96362ed400
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: mongodb
version: 4.1.1
version: 4.1.2
appVersion: 4.0.1
description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications.
keywords:
+1 -1
View File
@@ -40,7 +40,7 @@ To get the password for "{{ .Values.mongodbUsername }}" run:
To connect to your database run the following command:
kubectl run {{ template "mongodb.fullname" . }}-client --rm --tty -i --image bitnami/mongodb --command -- mongo admin --host {{ template "mongodb.fullname" . }} {{- if .Values.usePassword }} -u root -p $MONGODB_ROOT_PASSWORD{{- end }}
kubectl run --namespace {{ .Release.Namespace }} {{ template "mongodb.fullname" . }}-client --rm --tty -i --image bitnami/mongodb --command -- mongo admin --host {{ template "mongodb.fullname" . }} {{- if .Values.usePassword }} -u root -p $MONGODB_ROOT_PASSWORD{{- end }}
To connect to your database from outside the cluster execute the following commands: