Skip to content
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

Fix early load exit for unpacked appregistry format #72

Merged

Conversation

njhale
Copy link
Member

@njhale njhale commented Aug 10, 2019

Fixes a load bug that prevents appregistry repos from being entirely loaded.

Tested against community-operators:

$ # load a bunch of packages from community-operators
$ go run ./cmd/appregistry-server/main.go -r https://quay.io/cnr\|community-operators --kubeconfig ~/.kube/config -o microsegmentation-operator,namespace-configuration-operator,microcks,federatorai,spark-gcp,knative-serving-operator,atlasmap-operator,knative-camel-operator,syndesis,knative-kafka-operator,jaeger,descheduler,node-problem-detector,planetscale,hazelcast-enterprise,myvirtualdirectory,kubefed-operator,hco-operatorhub,enmasse,etcd,postgresql,openshift-pipelines-operator,apicurito,open-liberty,kiali,node-network-operator,twistlock,triggermesh,radanalytics-spark,akka-cluster-operator,metering,strimzi-kafka-operator,federation,opsmx-spinnaker-operator,spinnaker-operator,infinispan,grafana-operator,esindex-operator,prometheus,aqua,knative-eventing-operator,ibmcloud-operator,openebs,ripsaw,eclipse-che,iot-simulator,camel-k,cockroachdb,opendatahub-operator,cert-utils-operator,seldon-operator,awss3-operator-registry
... <elided output>
INFO[0018] download complete - 52 repositories have been downloaded  port=50051 type=appregistry
INFO[0019] decoded 50 flattened and 2 nested operator manifest(s)  port=50051 type=appregistry
... <elided output>
INFO[0024] serving registry                              port=50051 type=appregistry
$ # list the set of packages
$ grpcurl -plaintext  localhost:50051 api.Registry/ListPackages
{
  "name": "akka-cluster-operator"
}
... <elided output>
{
  "name": "twistlock"
}

$ # ensure the number of packages matches input (52)
$ grpcurl -plaintext  localhost:50051 api.Registry/ListPackages | rg "name" | wc -l
52

njhale added 2 commits August 9, 2019 20:00

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
- Close over error slice pointer
- Return nil after collecting error in walk closure
- Log decode error instead of collecting

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
@openshift-ci-robot openshift-ci-robot added approved Indicates a PR has been approved by an approver from all required OWNERS files. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. labels Aug 10, 2019
@@ -40,24 +40,25 @@ func (d *DirectoryLoader) Populate() error {
log := logrus.WithField("dir", d.directory)

log.Info("loading Bundles")
var errs []error
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: the nil slice declaration is the preferred style and works the same way

@jpeeler
Copy link

jpeeler commented Aug 10, 2019

/lgtm

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Aug 10, 2019
@openshift-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: jpeeler, 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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-robot openshift-merge-robot merged commit b51ff88 into operator-framework:master Aug 10, 2019
@njhale njhale deleted the fix-best-effort branch August 13, 2019 14:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants