2022-07-26 09:24:38 -04:00
|
|
|
FROM scratch
|
|
|
|
|
|
|
|
# Core bundle labels.
|
|
|
|
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/
|
2022-08-08 11:22:35 -04:00
|
|
|
LABEL operators.operatorframework.io.bundle.package.v1=node-operator
|
2022-07-26 09:24:38 -04:00
|
|
|
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
|
2022-12-09 12:30:20 -05:00
|
|
|
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.25.3
|
2022-07-26 09:24:38 -04:00
|
|
|
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
|
|
|
|
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
|
|
|
|
|
|
|
|
# Labels for testing.
|
|
|
|
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
|
|
|
|
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
|
|
|
|
|
|
|
|
# Copy files to locations specified by labels.
|
|
|
|
COPY bundle/manifests /manifests/
|
|
|
|
COPY bundle/metadata /metadata/
|
|
|
|
COPY bundle/tests/scorecard /tests/scorecard/
|