-
Notifications
You must be signed in to change notification settings - Fork 252
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
Bug 1878213: Update index add func to handle optional default channel #451
Bug 1878213: Update index add func to handle optional default channel #451
Conversation
The default channel annotation is no longer required as default channel information is now optional. Users may provide default channel if they intend to update default channel information in the index/DB. The default channel may still be infered if package.yaml is present. If the default channel cannot be infered, then the default channel will be omitted. Bundle validation will no longer error out if default channel annotation is missing. Signed-off-by: Vu Dinh <[email protected]>
@dinhxuanvu: This pull request references Bugzilla bug 1878213, which is invalid:
Comment 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. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dinhxuanvu 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 |
@joelanford Slight change of plan. I planned to make 2 PRs for validation and for index add change but the PR is not that complex. So I keep everything in one. Plus, we need a BZ for every PR due to master is still closed which is a bit of unnecessary hassle. |
9b60957
to
f9be8ed
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.
/lgtm
pkg/registry/populator.go
Outdated
if _, found := existingChannels[defaultChan]; found { | ||
manifest.DefaultChannelName = annotations.GetDefaultChannelName() | ||
} else { | ||
return manifest, fmt.Errorf("Default channel doesn't exist: %s", defaultChan) |
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.
nit: since this error is user facing I think it could be more descriptive. Users can run into this issue and its not very intuitive why.
fmt.Errorf("channel %s, labelled as default in annotations.yaml, not found in existing package channels", defaultChan)
/retest Please review the full test history for this PR and help us cut down flakes. |
/hold |
/lgtm |
/hold cancel |
If default channel is not provided in annotations, the existing default channel will remain the same. For the case of the first bundle being added and the default channel isn't provided, it will be inferred from provided channel list if there is only one channel. Otherwise, the index add will fail until the default channel is provided. Signed-off-by: Vu Dinh <[email protected]>
f9be8ed
to
4d61b1a
Compare
/lgtm |
/bugzilla refresh |
@dinhxuanvu: This pull request references Bugzilla bug 1878213, which is valid. The bug has been moved to the POST state. 3 validation(s) were run on this bug
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. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest |
@dinhxuanvu: All pull requests linked via external trackers have merged: Bugzilla bug 1878213 has been moved to the MODIFIED state. 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. |
/cherry-pick release-4.5 |
@dinhxuanvu: #451 failed to apply on top of branch "release-4.5":
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. |
Description of the change:
The default channel annotation is no longer required as default
channel information is now optional. Users may provide default
channel if they intend to update default channel information in
the index/DB.
The default channel may still be infered if package.yaml is present.
If the default channel cannot be infered, then the default channel
will be omitted.
Bundle validation will no longer error out if default channel
annotation is missing.
If default channel is not provided in annotations, the existing
default channel will remain the same.
For the case of the first bundle being added and the default channel
isn't provided, it will be inferred from provided channel list if
there is only one channel. Otherwise, the index add will fail until
the default channel is provided.
Motivation for the change:
Reviewer Checklist
/docs