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
We recommend that you use the `values.yaml` file for configuring your installation.
229
229
230
-
## Setting MarkLogic admin password
230
+
###Setting MarkLogic admin password
231
231
232
232
If the password does not provided when installing the MarkLogic Chart, a randomly generated aphanumeric value will be set for MarkLogic admin password. This value is stored in Kuberenetes secrets.
233
233
User can also set a custom password by setting auth.adminPassword value during installation.
@@ -239,9 +239,9 @@ kubectl get secrets
239
239
```
240
240
Identify the name of the secret.
241
241
242
-
2. Save the secret name from step 1 to get the admin password using the following script:
242
+
2. Save the secret name from step 1 and get the admin password using the following script:
243
243
```
244
-
kubectl get secret SECRET_NAME -o jsonpath='{.data}'
244
+
kubectl get secret SECRET_NAME -o jsonpath='{.data.marklogic-password}' | base64 --decode
0 commit comments