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
Once MarkLogic Operator Pod is running, use your custom manifests or choose from sample manifests from this repository located in the ./config/samples directory. For example, to deploy marklogic single group, use the `quick_start.yaml` from the samples:
42
49
```sh
@@ -52,34 +59,34 @@ If you used the automatically generated admin credentials, use these steps to ex
52
59
53
60
1. Run this command to fetch all of the secret names:
54
61
```shell
55
-
kubectl get secrets
62
+
kubectl get secrets --namespace=<namespace-name>
56
63
```
57
64
The MarkLogic admin secret name is in the format `<marklogicCluster-name>-admin`. For example if markLogicCluster name is `single-node`, the secret name is `single-node-admin`.
58
65
59
66
2. Using the secret name from step 1, retrieve the MarkLogic admin credentials using these commands:
60
67
```shell
61
-
kubectl get secret single-node-admin -o jsonpath='{.data.username}'| base64 --decode
68
+
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.username}'| base64 --decode
62
69
63
-
kubectl get secret single-node-admin -o jsonpath='{.data.password}'| base64 --decode
70
+
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.password}'| base64 --decode
64
71
65
-
kubectl get secret single-node-admin -o jsonpath='{.data.wallet-password}'| base64 --decode
72
+
kubectl get secret single-node-admin --namespace=<namespace-name> -o jsonpath='{.data.wallet-password}'| base64 --decode
66
73
```
67
74
68
-
Please note that if configurations are provided for both the cluster and the group, the values specified for the cluster will take precedence and be applied.
69
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.
70
76
71
77
## Clean Up
72
78
73
79
#### Cleaning up MarkLogic Cluster
74
-
Use these steps to delete MarkLogic cluster and other resources created from the manifests used in the above [step](#install-marklogic-cluster).
80
+
Use this step to delete MarkLogic cluster and other resources created from the manifests used in the above [step](#install-marklogic-cluster):
75
81
```sh
76
82
kubectl delete -f quick_start.yaml
77
83
```
78
84
79
85
#### Deleting Helm chart
80
-
Use these steps to delete MarkLogic Operator Helm chart.
86
+
Use these steps to delete MarkLogic Operator Helm chart and the namespace created:
0 commit comments