aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/vid/charts/vid-galera/templates/NOTES.txt
diff options
context:
space:
mode:
authorMandeep Khinda <Mandeep.Khinda@amdocs.com>2018-06-04 18:30:08 +0000
committerGerrit Code Review <gerrit@onap.org>2018-06-04 18:30:08 +0000
commit71e6b72212beb946305ca3e9c17b8898a5378923 (patch)
tree62bb22b8b64ae03182b75c675867a71fa8279d89 /kubernetes/vid/charts/vid-galera/templates/NOTES.txt
parent71bf8ec6164c9c083346fe51d8a4048e65724510 (diff)
parent2dda01daf2e5c2053221bf4eac81e2585f2b2c7f (diff)
Merge "VID Resiliency & Scalability"
Diffstat (limited to 'kubernetes/vid/charts/vid-galera/templates/NOTES.txt')
-rw-r--r--kubernetes/vid/charts/vid-galera/templates/NOTES.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/kubernetes/vid/charts/vid-galera/templates/NOTES.txt b/kubernetes/vid/charts/vid-galera/templates/NOTES.txt
new file mode 100644
index 0000000000..3dd25ac4b7
--- /dev/null
+++ b/kubernetes/vid/charts/vid-galera/templates/NOTES.txt
@@ -0,0 +1,12 @@
+MariaDB-Galera service can be accessed via port 3306 on the following DNS name from within your cluster:
+{{ include "common.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
+
+To connect to your database:
+
+1. Run a pod that you can use as a client:
+
+ kubectl run {{ include "common.fullname" . }}-client --rm --tty -i --image mariadb --command -- bash
+
+2. Connect using the mysql cli, then provide your password:
+ $ mysql -h {{ include "common.fullname" . }} {{- if .Values.mysqlRootPassword }} -p {{ .Values.mysqlRootPassword }}{{- end -}}
+