aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/vid/charts/vid-galera/templates/NOTES.txt
diff options
context:
space:
mode:
authorSonsino, Ofir (os0695) <os0695@intl.att.com>2018-05-30 18:41:14 +0300
committerMichael Lando <ml636r@att.com>2018-06-04 15:54:52 +0000
commit2dda01daf2e5c2053221bf4eac81e2585f2b2c7f (patch)
tree8d98d6b99e4bcdadedd150f51f6d1cb75fb6392b /kubernetes/vid/charts/vid-galera/templates/NOTES.txt
parent5768008d908cb4868652746c6a2aa46437c8c1c2 (diff)
VID Resiliency & Scalability
Change-Id: Ifc593e2e33c3430c74156b4b153263c11127bfa9 Issue-ID: VID-160 Signed-off-by: Michael Lando <ml636r@att.com>
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 -}}
+