Skip to content

Commit db37533

Browse files
operators [CI] postgresql (5.0.5)
1 parent 1baa7d1 commit db37533

File tree

6 files changed

+8451
-1
lines changed

6 files changed

+8451
-1
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Used to build the bundle image. This file is ignored by the community operator
2+
# registries which work with bundle directories instead.
3+
# https://operator-framework.github.io/community-operators/packaging-operator/
4+
5+
FROM scratch AS builder
6+
7+
COPY manifests/ /build/manifests/
8+
COPY metadata/ /build/metadata/
9+
COPY tests/ /build/tests
10+
11+
12+
FROM scratch
13+
14+
# ANNOTATIONS is replaced with bundle.annotations.yaml
15+
LABEL \
16+
operators.operatorframework.io.bundle.mediatype.v1="registry+v1" \
17+
operators.operatorframework.io.bundle.manifests.v1="manifests/" \
18+
operators.operatorframework.io.bundle.metadata.v1="metadata/" \
19+
operators.operatorframework.io.test.mediatype.v1="scorecard+v1" \
20+
operators.operatorframework.io.test.config.v1="tests/scorecard/" \
21+
operators.operatorframework.io.bundle.package.v1="postgresql" \
22+
operators.operatorframework.io.bundle.channels.v1="v5" \
23+
operators.operatorframework.io.bundle.channel.default.v1="v5" \
24+
com.redhat.delivery.operator.bundle=true \
25+
com.redhat.openshift.versions="v4.6-v4.9" \
26+
org.opencontainers.image.authors="[email protected]" \
27+
org.opencontainers.image.url="https://crunchydata.com" \
28+
org.opencontainers.image.vendor="Crunchy Data"
29+
30+
COPY --from=builder /build/ /

0 commit comments

Comments
 (0)