forked from NVIDIA/k8s-nim-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.Dockerfile
27 lines (23 loc) · 1.16 KB
/
bundle.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM scratch
ARG VERSION=""
ARG DEFAULT_CHANNEL=alpha
ARG CHANNELS=alpha
ARG GIT_COMMIT="unknown"
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=nim-operator-certified
LABEL operators.operatorframework.io.bundle.channels.v1=${CHANNELS}
LABEL operators.operatorframework.io.bundle.channel.default.v1=${DEFAULT_CHANNEL}
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.34.1
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
LABEL com.redhat.openshift.versions="v4.15"
LABEL com.redhat.delivery.operator.bundle=true
LABEL com.redhat.delivery.backport=false
LABEL vsc-ref=${GIT_COMMIT}
COPY bundle/${VERSION}/manifests /manifests/
COPY bundle/${VERSION}/metadata /metadata/
COPY bundle/tests/scorecard /tests/scorecard/