Remove 'Getting Started:' from various NOTES.txt. (#181)

This commit is contained in:
Greg Taylor
2016-11-10 13:00:21 -08:00
committed by Vic Iglesias
parent d1f359c445
commit 2f63fd5247
5 changed files with 1 additions and 12 deletions
+1 -3
View File
@@ -1,5 +1,3 @@
Getting Started:
1. After the petset is created completely, one can check which instance is primary by running:
$ for i in `seq 0 2`; do kubectl exec {{ printf "%s-%s" .Release.Name .Values.Name | trunc 24 }}-$i -- sh -c '/usr/bin/mongo --eval="printjson(rs.isMaster())"'; done.
This assumes 3 replicas, 0 through 2. It should be modified to reflect the actual number of replicas specified.
@@ -10,4 +8,4 @@ Getting Started:
3. One can fetch the keys stored in the primary or any of the slave nodes in the following manner.
$ kubectl exec POD_NAME -- /usr/bin/mongo --eval="rs.slaveOk(); db.test.find().forEach(printjson)"
POD_NAME must be replaced by the name of the pod being queried.
POD_NAME must be replaced by the name of the pod being queried.
-2
View File
@@ -1,5 +1,3 @@
Getting Started:
1. Get your '{{ .Values.Master.AdminUser }}' user password by running:
printf $(printf '\%o' `kubectl get secret --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath="{.data.jenkins-admin-password[*]}"`);echo
-2
View File
@@ -1,5 +1,3 @@
Getting Started:
MySQL can be accessed via port 3306 on the following DNS name from within your cluster:
{{ template "fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
-2
View File
@@ -1,5 +1,3 @@
Getting Started:
1. Get Traefik's load balancer IP/hostname:
NOTE: It may take a few minutes for this to become available.
-3
View File
@@ -1,6 +1,3 @@
Getting Started:
1. Get the Uchiwa URL to visit by running these commands in the same shell:
{{- if contains "NodePort" .Values.serviceType }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }})