-
Notifications
You must be signed in to change notification settings - Fork 544
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
feat(package-server): create subscription manifest #609
feat(package-server): create subscription manifest #609
Conversation
d1b73c0
to
3257c66
Compare
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: njhale 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 |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: njhale 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 |
{{- end }} | ||
{{- end }} | ||
packages: |- | ||
{{ include "packageserver.package" . | nindent 4 }} |
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.
if you change these to {{-
you won't have all the extra spaces in the output
@@ -195,6 +203,21 @@ func (o *Operator) syncCatalogSources(obj interface{}) (syncError error) { | |||
o.sources[sourceKey] = src | |||
o.sourcesLastUpdate = timeNow() | |||
|
|||
// Sync any dependent Subscriptions | |||
subs, err := o.lister.OperatorsV1alpha1().SubscriptionLister().List(labels.Everything()) |
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.
This error isn't being checked
019ad87
to
c2f6957
Compare
/lgtm |
@njhale It looks like running |
Yup, looks like it. I ran Update: Noticed that |
c2f6957
to
23ca06c
Compare
23ca06c
to
ab66501
Compare
/test e2e-aws-olm |
1 similar comment
/test e2e-aws-olm |
/retest |
2 similar comments
/retest |
/retest |
db9f60c
to
161e61c
Compare
/lgtm |
161e61c
to
d519125
Compare
New changes are detected. LGTM label has been removed. |
d519125
to
16faa06
Compare
/retest |
1 similar comment
/retest |
@njhale: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. I understand the commands that are listed here. |
…subscription feat(package-server): create subscription manifest
Description