Fix(charts): correct operator controller image to rossoctl-operator#493
Merged
Conversation
The rename renamed the repo to 'operator' and the controller image to 'rossoctl-operator', but the chart's image.repository was set to the repo name (ghcr.io/rossoctl/operator/operator) — which does not exist. This caused rossoctl-controller-manager to ImagePullBackOff (403) on platform install, failing the Kind e2e on both main and the v0.7.0-alpha.6 PR. Point it at the actual published image: ghcr.io/rossoctl/operator/rossoctl-operator. Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com> Signed-off-by: cwiklik <cwiklikj@gmail.com>
esnible
approved these changes
Jul 22, 2026
cwiklik
added a commit
to rossoctl/rossoctl
that referenced
this pull request
Jul 22, 2026
Re-pin operator to v0.3.0-alpha.10, which carries the operator-chart fix (rossoctl/operator#493) that corrects the controller image reference to ghcr.io/rossoctl/operator/rossoctl-operator. alpha.9's chart pointed at a nonexistent .../operator image, causing rossoctl-controller-manager ImagePullBackOff and the Kind e2e failure on this PR. Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com> Signed-off-by: cwiklik <cwiklikj@gmail.com>
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
Fix the operator-chart controller image reference left inconsistent by the
kagenti → rossoctlrename.The rename renamed the repo to
operatorand the controller image torossoctl-operator, butcharts/operator/values.yamlsetcontrollerManager.container.image.repositoryto the repo name(
ghcr.io/rossoctl/operator/operator) — which does not exist.Impact
rossoctl-controller-managerhitsImagePullBackOff(403 — image not found)on platform install, failing the Kind e2e on both
mainand thev0.7.0-alpha.6PR. The real imageghcr.io/rossoctl/operator/rossoctl-operatorpublishes correctly; only the chart reference was wrong.
Fix
Point
image.repositoryat the actual published image:ghcr.io/rossoctl/operator/rossoctl-operator.After merge
Re-cut operator
v0.3.0-alpha.10, then re-pin the platform (rossoctl/rossoctl)to
alpha.10— the Kind e2e should then install cleanly.Assisted-By: Claude Code