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
Refer to the official Kubernetes documentation for detailed steps on how to [create a secret](https://kubernetes.io/docs/tasks/configmap-secret/managing-secret-using-kubectl/#create-a-secret).
40
40
41
41
4. Create a `values.yaml` file to customize the settings. Specify the number of pods (one MarkLogic host in this case), add the secret name for the admin credentials (if not using the automatically generated one), and specify the resources that should be allocated to each MarkLiogic pod.
42
+
43
+
Note: Please ensure to use the latest MarkLogic Docker image for the new implementation as specified in the values.yaml file below. Refer to [https://hub.docker.com/r/marklogicdb/marklogic-db/tags](https://hub.docker.com/r/marklogicdb/marklogic-db/tags) for the latest image available.
42
44
```
43
45
# Create a single MarkLogic pod
44
46
replicaCount: 1
45
47
48
+
# Marklogic image parameters
49
+
# using the latest image 11.0.3-centos-1.0.2
50
+
image:
51
+
repository: marklogicdb/marklogic-db;
52
+
tag: 11.0.3-centos-1.0.2
53
+
pullPolicy: IfNotPresent
54
+
46
55
# Set the admin credentials secret. Leave this out or set to blank "" to use the automatically generated secret.
47
56
auth:
48
57
secretName: "ml-admin-secrets"
@@ -102,7 +111,7 @@ Following table lists all the parameters supported by the latest MarkLogic Helm
102
111
|`group.enableXdqpSsl`| SSL encryption for XDQP |`true`|
103
112
|`bootstrapHostName`| Host name of MarkLogic bootstrap host (to join a cluster) |`""`|
104
113
|`image.repository`| Repository for MarkLogic image |`marklogicdb/marklogic-db`|
105
-
|`image.tag`| Image tag for MarkLogic image |`11.0.2-centos-1.0.2`|
114
+
|`image.tag`| Image tag for MarkLogic image |`11.0.3-centos-1.0.2`|
106
115
|`image.pullPolicy`| Image pull policy for MarkLogic image |`IfNotPresent`|
107
116
|`initContainerImage.repository`| Repository for initContainer image |`curlimages/curl`|
108
117
|`initContainerImage.tag`| Image tag for initContainer image |`7.87.0`|
0 commit comments