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
string(name: 'KUBERNETES_TEST_SELECTION', defaultValue: '...', description: 'Pick one test to run. (e.g. tls_test.go) ... will run all tests.', trim: true)
175
175
booleanParam(name: 'HC_TESTS', defaultValue: false, description: 'Run Hub Central E2E UI tests (takes about 3 hours)')
176
176
booleanParam(name: 'IMAGE_SCAN', defaultValue: false, description: 'Find and scan dependent Docker images for security vulnerabilities')
177
+
booleanParam(name: 'HELM_UPGRADE_TESTS', defaultValue: false, description: 'Run Helm upgrade in E2E tests (runs nightly on develop)')
178
+
string(name: 'InitialChartVersion', defaultValue: '1.1.2', description: 'Helm Chart Version to use for upgrade tests. (e.g. 1.1.2)', trim: true)
177
179
string(name: 'emailList', defaultValue: emailList, description: 'List of email for build notification', trim: true)
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,15 +46,15 @@ Refer to the official Kubernetes documentation for detailed steps on how to [cre
46
46
47
47
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.
48
48
49
-
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.
49
+
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/progressofficial/marklogic-db/tags](https://hub.docker.com/r/progressofficial/marklogic-db/tags) for the latest image available.
50
50
```
51
51
# Create a single MarkLogic pod
52
52
replicaCount: 1
53
53
54
54
# Marklogic image parameters
55
55
# using the latest image 11.0.3-centos-1.0.2
56
56
image:
57
-
repository: marklogicdb/marklogic-db;
57
+
repository: progressofficial/marklogic-db;
58
58
tag: 11.0.3-centos-1.0.2
59
59
pullPolicy: IfNotPresent
60
60
@@ -119,10 +119,10 @@ Following table lists all the parameters supported by the latest MarkLogic Helm
119
119
|`group.name`| Group name for joining MarkLogic cluster |`Default`|
120
120
|`group.enableXdqpSsl`| SSL encryption for XDQP |`true`|
121
121
|`bootstrapHostName`| Host name of MarkLogic bootstrap host (to join a cluster) |`""`|
122
-
|`image.repository`| Repository for MarkLogic image |`marklogicdb/marklogic-db`|
123
-
|`image.tag`| Image tag for MarkLogic image |`11.2.0-centos-1.1.2`|
122
+
|`image.repository`| Repository for MarkLogic image |`progressofficial/marklogic-db`|
123
+
|`image.tag`| Image tag for MarkLogic image |`11.3.0-ubi-rootless`|
124
124
|`image.pullPolicy`| Image pull policy for MarkLogic image |`IfNotPresent`|
125
-
|`initContainers.configureGroup.image`| Image for configureGroup InitContainer |`curlimages/curl:8.6.0`|
125
+
|`initContainers.configureGroup.image`| Image for configureGroup InitContainer |`curlimages/curl:8.8.0`|
126
126
|`initContainers.configureGroup.pullPolicy`| Pull policy for configureGroup InitContainer |`IfNotPresent`|
127
127
|`initContainers.utilContainer.image`| Image for copyCerts and volume permission change for root to rootless upgrade InitContainer |`redhat/ubi9:9.3`|
128
128
|`initContainers.utilContainer.pullPolicy`| Pull policy for copyCerts and volume permission change for root to rootless upgrade InitContainer |`IfNotPresent`|
@@ -184,7 +184,7 @@ Following table lists all the parameters supported by the latest MarkLogic Helm
184
184
|`readinessProbe.failureThreshold`| Failure threshold for readiness probe |`3`|
185
185
|`readinessProbe.successThreshold`| Success threshold for readiness probe |`1`|
186
186
|`logCollection.enabled`| Parameter to enable cluster wide log collection of Marklogic server logs |`false`|
187
-
|`logCollection.image`| Image repository and tag for fluent-bit container |`fluent/fluent-bit:2.2.2`|
187
+
|`logCollection.image`| Image repository and tag for fluent-bit container |`fluent/fluent-bit:3.1.1`|
188
188
|`logCollection.resources.requests.cpu`| The requested cpu resource for the fluent-bit container |`100m`|
189
189
|`logCollection.resources.requests.memory`| The requested memory resource for the fluent-bit container |`128Mi`|
190
190
|`logCollection.resources.limits.cpu`| The cpu resource limit for the fluent-bit container |`100m`|
0 commit comments