-
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
Bundle validate lib functions #143
Bundle validate lib functions #143
Conversation
93a8dfa
to
8525774
Compare
8525774
to
e62757c
Compare
@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? |
@kevinrizza https://github.com/operator-framework/operator-lifecycle-manager/blob/master/pkg/controller/registry/resolver/steps.go#L119-L127 (from |
e62757c
to
fdf9c13
Compare
fdf9c13
to
026f1e5
Compare
026f1e5
to
d18e070
Compare
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]>
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]>
Signed-off-by: Vu Dinh <[email protected]>
9df82d3
to
8e21f5e
Compare
@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) |
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.
should we be consistent and catch this removeall error too?
/lgtm |
[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 |
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
andpull
)Reviewer Checklist
/docs