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

Bundle validate lib functions #143

Merged

Conversation

kevinrizza
Copy link
Member

Description of the change:
This pull request adds bundle validation lib functions to validate the format of the image itself
It also includes an example implementation of these validation functions in opm alpha bundle validate

Motivation for the change:
This change is intended to provide a common functional library for the operator-sdk and any other callers to validate that bundle images are in the prescribed format. Additionally, this pr provides a convenient function that understands how to shell out to container tooling and pull the contents of bundle images into a specified local directory (via podman/docker save and pull)

Reviewer Checklist

  • Implementation matches the proposed design, or proposal is updated to match implementation
  • Sufficient unit test coverage
  • Sufficient end-to-end test coverage
  • Docs updated or added to /docs
  • Commit messages sensible and descriptive

Sorry, something went wrong.

@openshift-ci-robot openshift-ci-robot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Dec 20, 2019
@kevinrizza
Copy link
Member Author

@njhale @ecordell @joelanford updated based on latest feedback. Although I couldn't find that yamlorjson unmarshaler you were referring to Evan. Maybe you could point me to one?

@ecordell
Copy link
Member

ecordell commented Dec 20, 2019

@openshift-ci-robot openshift-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Dec 20, 2019
@openshift-ci-robot openshift-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Dec 20, 2019
@kevinrizza kevinrizza mentioned this pull request Dec 20, 2019
5 tasks
@openshift-ci-robot openshift-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jan 3, 2020
1. Enable bundle image validation: manifests and annotations.yaml
2. Add internal opm cli to use validation feature

Signed-off-by: Vu Dinh <[email protected]>
Bowenislandsong and others added 4 commits January 2, 2020 23:48
Updated the bundle validation lib functions to expose separate functions
for pulling and validating bundles -- this allows the operator sdk to
run this validation against locally created bundle directories

Condensed some of the bundle image parsing code to use the common
containertool functions already defined elsewhere in the project

Additionally, updated the logging and validation error collection to be
more configurable
1. Improve helm chart validation
2. Return right away if annotations file is not found

Signed-off-by: Vu Dinh <[email protected]>
@openshift-ci-robot openshift-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jan 3, 2020
@dinhxuanvu
Copy link
Member

@ecordell @joelanford @estroz Ready for final review

if workingDir == "" {
rootTarfile := filepath.Join(options.WorkingDir, "bundle.tar")

if options.WorkingDir == "" {
workingDir, err := ioutil.TempDir("./", "bundle_staging_")
if err != nil {
return err
}
defer os.RemoveAll(workingDir)
Copy link
Member

Choose a reason for hiding this comment

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

should we be consistent and catch this removeall error too?

@ecordell
Copy link
Member

ecordell commented Jan 3, 2020

/lgtm

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Jan 3, 2020
@openshift-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: ecordell, kevinrizza

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-ci-robot openshift-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jan 3, 2020
@openshift-merge-robot openshift-merge-robot merged commit f1bac3b into operator-framework:master Jan 3, 2020
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

9 participants