forked from vmware/nsx-container-plugin-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue vmware#128: Adopt bundle format for the Operator
Support bundle format for NCP operator. Update bundle manifest files/ Dockerfile/Makefile for generating bundle image. Current workflow is: 1.Generate CSV files with tool faq. 2.Build image contains CSV files. 3.Index the image with version using tool opm. After NCP operator finishes refactoring with new version of operator-sdk, the workflow will be simplified to generating bundle image automatically with operator-sdk.
- Loading branch information
Showing
9 changed files
with
1,218 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM scratch | ||
|
||
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1 | ||
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/ | ||
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/ | ||
LABEL operators.operatorframework.io.bundle.package.v1=nsx-container-plugin-operator | ||
LABEL operators.operatorframework.io.bundle.channels.v1=alpha | ||
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha | ||
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/ | ||
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1 | ||
|
||
COPY bundle/manifests /manifests/ | ||
COPY bundle/metadata /metadata/ | ||
COPY bundle/tests/scorecard /tests/scorecard/ | ||
LABEL com.redhat.openshift.versions=v4.6,v4.7 | ||
LABEL com.redhat.delivery.operator.bundle=true |
Oops, something went wrong.