chore: bump OSL builder to 1.38.0 for RHDH 1.10 compatibility - #790
Merged
Merged
Conversation
Update the SonataFlow builder image from 1.37.0-19 to 1.38.0-3 (registry.redhat.io/openshift-serverless-1/logic-swf-builder-rhel9) and update all workflow manifest image tags from osl_1_37 to osl_1_38. RHDH 1.10 ships with SonataFlow Operator v1.38.0, which deploys data-index and jobs-service at OSL 1.38. Workflows built with the 1.37 builder produce CloudEvents that are incompatible with the 1.38 data-index event deserializer, causing an UnsupportedOperationException in MultipleProcessInstanceDataEventDeserializer.getCloudEvent() and crashing the data-index service. Requested-By: <@UT9BX0AM6> (ccrum) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
lholmquist
approved these changes
Jun 18, 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
Bump the OSL (OpenShift Serverless Logic) SonataFlow builder image from 1.37.0-19 to 1.38.0-3 and update all workflow manifest image tags from
osl_1_37toosl_1_38.Motivation
RHDH 1.10 ships with SonataFlow Operator v1.38.0, which deploys data-index and jobs-service at OSL 1.38. Workflows built with the 1.37 builder produce CloudEvents that are incompatible with the 1.38 data-index event deserializer, causing:
This crashes the data-index service, preventing workflow status events from being processed. As a result, all orchestrator e2e tests fail (workflows run but never show Completed/Failed status in the UI).
See: redhat-developer/rhdh#4154 for the RHDH-side context.
Changes
scripts/build.sh: UpdatedDEFAULT_BUILDER_IMAGEand embedded Dockerfile FROM to uselogic-swf-builder-rhel9:1.38.0-3osl_1_37toosl_1_38Note
After merging, the workflow images need to be rebuilt and pushed to
quay.io/orchestrator/withosl_1_38tags. The CI should handle this automatically on push to main.The
pipeline/workflow-builder.Dockerfiledefault (quay.io/orchestrator/logic-swf-builder-rhel8:1.36.0-disconnected) is unchanged — a separate disconnected 1.38 builder would need to be created if needed.The
orchestrator-demorepo also references the 1.37 builder and may need a similar update.