-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Expose new custom components env vars to csv-generator and manifest-templator #8792
Expose new custom components env vars to csv-generator and manifest-templator #8792
Conversation
/cc @jean-edouard @enp0s3 @fossedihelm Can you please pay special attention to bc513a7? |
25a82b6
to
06e9722
Compare
…emplator Signed-off-by: Itamar Holder <[email protected]>
Signed-off-by: Itamar Holder <[email protected]>
Signed-off-by: Itamar Holder <[email protected]>
Until this commit, the following rules were enforced: 1. virt-operator image has to be found 2. virt-operator image needs to comply with the virt-operator regex 3. If one custom component is set, all need to be set Rules 2 and 3 are now dropped, which essentially means: * Any custom image can be given, not only one that complies with virt-operator regex * Custom images can be applied to SOME of the components but not all Signed-off-by: Itamar Holder <[email protected]>
Signed-off-by: Itamar Holder <[email protected]>
06e9722
to
aff9581
Compare
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.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jean-edouard The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
Thanks
/retest-required |
1 similar comment
/retest-required |
/cherrypick release-0.58 |
@iholder-redhat: #8792 failed to apply on top of branch "release-0.58":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
@@ -41,6 +41,11 @@ import ( | |||
"kubevirt.io/kubevirt/tools/util" | |||
) | |||
|
|||
const ( | |||
customImageExample = "Examples: some.registry.com@sha256:abcdefghijklmnop, other.registry.com:tag1" |
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.
abcdefghijklmnop
is not a valid example for sha digest as it should include only hexadecimal characters (0-9,a-f) :)
What this PR does / why we need it:
This is a follow-up for #8673. This PR aims to expose the new env vars introduced in the previous PR to csv-generator and manifest-templator.
Release note: