MLE-28392: Update Helm utility image to redhat/ubi9:9.7#336
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Helm chart’s utility (init) container base image to the next UBI9 release to keep the chart aligned with the intended Red Hat UBI patch level.
Changes:
- Bump
initContainers.utilContainer.imagedefault fromredhat/ubi9:9.6toredhat/ubi9:9.7.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Bump initContainers.utilContainer.image from redhat/ubi9:9.6 to 9.7 in charts/values.yaml and README.md - In ML12, assigning ssl-certificate-template to an app server no longer automatically sets ssl-allow-tls=true (unlike ML11). Fix configure_tls to explicitly set ssl-allow-tls=true via http://8002 BEFORE assigning the cert template for each server (App-Services, Admin, Manage), while http://8002 is still plaintext. This is harmless on ML11.
8452da2 to
ac4a9cf
Compare
pengzhouml
approved these changes
Apr 17, 2026
- Replace fixed sleep 5s with active HTTPS polling loop (waits up to 60s per app server) to handle slower startup on Jenkins/UBI 9.7 - Capture HTTP response code with retry logic for ssl-certificate-template PUT instead of fire-and-forget - Remove ssl-allow-tls PUT (not a valid/configurable property on ML12) - Update test assertion from ssl-allow-tls to ssl-certificate-template (ssl-allow-tls is absent from Manage API responses on ML12+)
4e1927e to
ed9d40d
Compare
rwinieski
approved these changes
Apr 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Update the Helm chart utility (init) container image from redhat/ubi9:9.6 to redhat/ubi9:9.7.
Change
charts/values.yaml: bumpinitContainers.utilContainer.imagefromredhat/ubi9:9.6toredhat/ubi9:9.7Updated TLS app server configuration (configure_tls in configmap-scripts.yaml). After each ssl-certificate-template PUT, the script now polls https://localhost:{port}/ every 2 seconds (up to 60 seconds) and only proceeds once the server responds over HTTPS, rather than using a fixed sleep. This makes the timing self-correcting across environments.
The PUT response code is also captured and logged, with an automatic retry on non-204 responses.
The ssl-allow-tls PUT was removed in test. SSL is always enabled internally once a certificate template is assigned.
Validation
Jenkins CI to be validated with MarkLogic 11 and 12 (root and rootless).
Jira: MLE-28392