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
Group {{ .Values.group.name }} is created on the MarkLogic cluster.
6
12
7
-
$ helm status {{ .Release.Name }}
13
+
{{- if .Values.group.enableXdqpSsl }}
14
+
xdqp-ssl-enabled is turned on for {{ .Values.group.name }} group.
15
+
{{- else }}
16
+
xdqp-ssl-enabled is turned off for {{ .Values.group.name }} group.
17
+
{{- end }}
8
18
9
19
To get pods in the {{ .Release.Namespace }} namespace, try:
10
20
11
21
$ kubectl get pods --namespace={{ .Release.Namespace }}
12
22
13
23
To get all services in the {{ .Release.Namespace }} namespace, try:
14
24
15
-
$ kubectl get services --namespace=default
16
-
17
-
To get admin credentials of the MarkLogic cluster, follow below steps:
18
-
19
-
First get the name of the secrets, run:
25
+
$ kubectl get services --namespace={{ .Release.Namespace }}
20
26
21
-
$ kubectl get secrets
27
+
To get admin credentials of the MarkLogic cluster, run:
22
28
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
29
+
$ kubectl get secret {{ include "marklogic.fullname" . }}-admin -o jsonpath='{.data.password}' | base64 --decode
26
30
27
31
To connect to the {{ .Chart.Name }} cluster, use port forwarding:
28
32
@@ -35,7 +39,3 @@ To connect to the {{ .Chart.Name }} cluster, use port forwarding:
35
39
$ kubectl port-forward {{ include "marklogic.fullname" . }}-0 8001:8001
36
40
37
41
MarkLogic admin UI can be accessed at http://localhost:8001
38
-
39
-
To check the groups created in the MarkLogic cluster, go to http://localhost:8002/manage/v2/groups
40
-
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