-
Notifications
You must be signed in to change notification settings - Fork 53
🐛 Restore stripping of leading "v" from container image tag #590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@RayyanSeliya |
This is needed because .github/workflows/goreleaser.yml says
```shell
make chart IMG=${{ env.REGISTRY }}/${{ env.OPERATOR_IMAGE }}:${{github.ref_name}}
```
and the tag has a leading "v" but the controller-manager container
image tag does not.
Signed-off-by: Mike Spreitzer <[email protected]>
c02fd8e to
627b380
Compare
|
/lgtm |
|
LGTM label has been added. DetailsGit tree hash: 50627fe96bd9cccd6625356ed589064864930a89 |
pdettori
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: MikeSpreitzer The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Summary
This PR restores the stripping of a leading "v" from the image tag in the Makefile target
chart.This is needed because .github/workflows/goreleaser.yml says
and the tag has a leading "v" but the controller-manager container image tag does not.
This stripping was erroneously removed in #519 .
Related issue(s)
This takes a step towards resolving #588; that Issue will not be fully resolved until a new release is made.