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.
223
229
230
+
### Setting MarkLogic admin password
231
+
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
+
User can also set a custom password by setting auth.adminPassword value during installation.
234
+
To retrieve the randomly generated admin password, use the following commands:
235
+
236
+
1. List the secrets for MarkLogic deployment:
237
+
```
238
+
kubectl get secrets
239
+
```
240
+
Identify the name of the secret.
241
+
242
+
2. Save the secret name from step 1 and get the admin password using the following script:
243
+
```
244
+
kubectl get secret SECRET_NAME -o jsonpath='{.data.marklogic-password}' | base64 --decode
245
+
```
224
246
### Log Collection
225
247
226
248
To enable log collection for all Marklogic logs set logCollection.enabled to true. Set each option in logCollection.files to true of false depending on if you want to track each type of Marklogic log file.
0 commit comments