mirror of
https://github.com/mariadb-operator/mariadb-operator.git
synced 2025-08-19 16:24:15 +00:00
24 lines
1.0 KiB
Docker
24 lines
1.0 KiB
Docker
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/
|
|
LABEL operators.operatorframework.io.bundle.package.v1=mariadb-operator-enterprise
|
|
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
|
|
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.32.0
|
|
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
|
|
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4
|
|
LABEL com.redhat.openshift.versions=v4.12
|
|
LABEL com.redhat.delivery.operator.bundle=true
|
|
LABEL com.redhat.delivery.backport=false
|
|
|
|
# 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 deploy/olm/manifests /manifests/
|
|
COPY deploy/olm/metadata /metadata/
|
|
COPY deploy/olm/tests/scorecard /tests/scorecard/
|