Skip to content

Commit 5c73c1f

Browse files
pengzhoumlPeng Zhou
and
Peng Zhou
authored
MLE-20108: remove trailing % in the instruction on getting credential (#74)
Co-authored-by: Peng Zhou <[email protected]>
1 parent f01afb5 commit 5c73c1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ The MarkLogic admin secret name is in the format `<marklogicCluster-name>-admin
6565

6666
2. Using the secret name from step 1, retrieve the MarkLogic admin credentials using these commands:
6767
```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
6969

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
7171

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
7373
```
7474

7575
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

Comments
 (0)