You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/templates/NOTES.txt
+23-11Lines changed: 23 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,26 +4,38 @@ Your release is named {{ .Release.Name }}.
4
4
5
5
To check the status of the release, try:
6
6
7
-
$ helm status {{ .Release.Name }}
7
+
$ helm status {{ .Release.Name }}
8
8
9
-
To get all resources of the release, try:
9
+
To get pods in the {{ .Release.Namespace }} namespace, try:
10
10
11
-
$ helm get all {{ .Release.Name }}
11
+
$ kubectl get pods --namespace={{ .Release.Namespace }}
12
12
13
-
To get the pods in the {{ .Release.Namespace }}, try:
14
-
15
-
$ kubectl get pods --namespace={{ .Release.Namespace }}
13
+
To get all services in the {{ .Release.Namespace }} namespace, try:
16
14
17
-
To get all services in the {{ .Release.Namespace }}, try:
15
+
$ kubectl get services --namespace=default
18
16
19
-
$ kubectl get services --namespace=default
17
+
To get admin credentials of the MarkLogic cluster, follow below steps:
18
+
19
+
First get the name of the secrets, run:
20
+
21
+
$ kubectl get secrets
22
+
23
+
Copy the secret name from step 1 and run below command to extract admin password
24
+
25
+
$ kubectl get secret SECRET_NAME -o jsonpath='{.data.marklogic-password}' | base64 --decode
20
26
21
27
To connect to the {{ .Chart.Name }} cluster, use port forwarding:
22
28
23
29
To access the whole cluster, forward the port to the service:
24
30
25
-
$ kubectl port-forward svc/{{ include "marklogic.fullname" . }} 8001:8001
31
+
$ kubectl port-forward svc/{{ include "marklogic.fullname" . }} 8001:8001
32
+
33
+
To access first pod, forward the port to the pod using:
34
+
35
+
$ kubectl port-forward {{ include "marklogic.fullname" . }}-0 8001:8001
36
+
37
+
MarkLogic admin UI can be accessed at http://localhost:8001
26
38
27
-
To access a pod, forward the port to the pod using:
39
+
To check the groups created in the MarkLogic cluster, go to http://localhost:8002/manage/v2/groups
28
40
29
-
$ kubectl port-forward {{ include "marklogic.fullname" . }}-0 8001:8001
41
+
To check other properties of the {{ .Values.group.name }} group in the cluster, go to http://localhost:8002/manage/v2/groups/{{ .Values.group.name }}/properties
0 commit comments