Description:
Currently, the RHDH Operator job fails while the Helm deployment works correctly.
Upon investigation, it was found that although release-specific Operators are created, the RHDH instance/subscription is using a hardcoded image:
image: 'quay.io/rhdh-community/rhdh:next'
This causes a mismatch, as the Operator is release-specific but the image is not.
Expected Behavior:
The image path should be dynamically constructed to match the release, e.g.:
quay.io/$QUAY_REPO:$TAG_NAME
Proposed Fix:
Update the Operator logic to dynamically construct and use the image path based on the release/tag.