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: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -65,11 +65,11 @@ The MarkLogic admin secret name is in the format `<marklogicCluster-name>-admin
65
65
66
66
2. Using the secret name from step 1, retrieve the MarkLogic admin credentials using these commands:
67
67
```shell
68
-
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.username}'| base64 --decode
68
+
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.username}'| base64 --decode;echo
69
69
70
-
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.password}'| base64 --decode
70
+
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.password}'| base64 --decode;echo
71
71
72
-
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.wallet-password}'| base64 --decode
72
+
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.wallet-password}'| base64 --decode;echo
73
73
```
74
74
75
75
For additional manifests to deploy a MarkLogic cluster inside a Kubernetes cluster, see [Operator manifest](https://docs.progress.com/bundle/marklogic-server-on-kubernetes/operator/Operator-manifest.html) in the documentation.
0 commit comments