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
* MLE-22135: change liveness probe
* add retry logic to group configuration
* update haproxy image
* adjust testing time
* update marklogic image version
* remove image
* update image version in Jenkins
* fix makefile for pipeline
* fix validate rule and image load
* push changes from build
* MLE-22902: fix operator pipeline bug
* ignore docker cache
* fix validating rule
* add debug message for Jenkins Pipeline
* fix test with bug: index out of range [0] with length 0
* fix test bug with index out of range [1] with length 1
* add debug info
* revert changes back to makefile
* uncomment changes
---------
Co-authored-by: Peng Zhou <[email protected]>
Copy file name to clipboardExpand all lines: Jenkinsfile
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,8 @@ pipeline {
164
164
// }
165
165
166
166
parameters {
167
-
string(name: 'dockerImage', defaultValue: 'ml-docker-db-dev-tierpoint.bed-artifactory.bedford.progress.com/marklogic/marklogic-server-ubi:latest-11', description: 'Docker image to use for tests.', trim: true)
167
+
string(name: 'E2E_MARKLOGIC_IMAGE_VERSION', defaultValue: 'ml-docker-db-dev-tierpoint.bed-artifactory.bedford.progress.com/marklogic/marklogic-server-ubi-rootless:latest-12', description: 'Docker image to use for tests.', trim: true)
Copy file name to clipboardExpand all lines: api/v1/marklogiccluster_types.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ import (
27
27
28
28
// MarklogicClusterSpec defines the desired state of MarklogicCluster
29
29
30
-
// +kubebuilder:validation:XValidation:rule="!(self.haproxy.enabled == true && self.haproxy.pathBasedRouting == true) || int(self.image.split(':')[1].split('.')[0] + self.image.split(':')[1].split('.')[1]) >= 111", message="HAProxy and Pathbased Routing is enabled. PathBasedRouting is only supported for MarkLogic 11.1 and above"
30
+
// +kubebuilder:validation:XValidation:rule="!(self.haproxy.enabled == true && self.haproxy.pathBasedRouting == true) || self.image.split(':')[1].matches('.*latest.*') || int(self.image.split(':')[1].split('.')[0] + self.image.split(':')[1].split('.')[1]) >= 111", message="HAProxy and Pathbased Routing is enabled. PathBasedRouting is only supported for MarkLogic 11.1 and above"
31
31
typeMarklogicClusterSpecstruct {
32
32
// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster
33
33
// Important: Run "make" to regenerate code after modifying this file
0 commit comments