Skip to content

Commit 8768daa

Browse files
updated readme to use latest image from dockerhub (#157)
1 parent 0bc2af1 commit 8768daa

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,19 @@ kubectl create secret generic ml-admin-secrets \
3939
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).
4040

4141
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.
4244
```
4345
# Create a single MarkLogic pod
4446
replicaCount: 1
4547
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+
4655
# Set the admin credentials secret. Leave this out or set to blank "" to use the automatically generated secret.
4756
auth:
4857
secretName: "ml-admin-secrets"
@@ -102,7 +111,7 @@ Following table lists all the parameters supported by the latest MarkLogic Helm
102111
| `group.enableXdqpSsl` | SSL encryption for XDQP | `true` |
103112
| `bootstrapHostName` | Host name of MarkLogic bootstrap host (to join a cluster) | `""` |
104113
| `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` |
106115
| `image.pullPolicy` | Image pull policy for MarkLogic image | `IfNotPresent` |
107116
| `initContainerImage.repository` | Repository for initContainer image | `curlimages/curl` |
108117
| `initContainerImage.tag` | Image tag for initContainer image | `7.87.0` |

0 commit comments

Comments
 (0)