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
If you are permanently removing the host from the MarkLogic cluster, once the pod is terminated, follow standard MarkLogic administrative procedures using the administrative UI or APIs to remove the MarkLogic host from the cluster. Also, because Kubernetes keeps the Persistent Volume Claims and Persistent Volumes around until they are explicitly deleted, you must manually delete them using the Kubernetes APIs before attempting to scale the hosts in the StatefulSet back up again.
275
+
276
+
### Enabling SSL over XDQP
277
+
278
+
To enable SSL over XDQP, set the `enableXdqpSsl` to true either in the values.yaml file or using the `--set` flag. All communications to and from hosts in the cluster will be secured. When this setting is on, default SSL certificates will be used for XDQP encryption.
279
+
280
+
Note: To enable other XDQP/SSL settings like `xdqp ssl allow sslv3`, `xdqp ssl allow tls`, `xdqp ssl ciphers`, use MarkLogic REST Management API. See the MarkLogic documentation [here](https://docs.marklogic.com/REST/management).
281
+
282
+
275
283
# Access the MarkLogic Server
276
284
277
285
## Service
@@ -385,7 +393,10 @@ This table describes the list of available parameters for Helm Chart.
385
393
|`nameOverride`| String to override the app name |`""`|
386
394
|`fullnameOverride`| String to completely replace the generated name |`""`|
387
395
|`auth.adminUsername`| Username for default MarkLogic Administrator |`admin`|
388
-
|`auth.adminPassword`| Password for default MarkLogic Administrator |`admin`|
396
+
| `auth.adminPassword` | Password for default MarkLogic Administrator | `admin`
397
+
| `bootstrapHostName` | Host name of MarkLogic bootstrap host | `""`
398
+
|`group.name`| group name for joining MarkLogic cluster |`Default`|
399
+
|`group.enableXdqpSsl`| SSL encryption for XDQP |`true`|
389
400
|`affinity`| Affinity property for pod assignment |`{}`|
390
401
|`nodeSelector`| nodeSelector property for pod assignment |`{}`|
391
402
|`persistence.enabled`| Enable MarkLogic data persistence using Persistence Volume Claim (PVC). If set to false, EmptyDir will be used |`true`|
0 commit comments