mirror of https://github.com/grafana/loki
Add operator-sdk to bingo targets (#14)
Co-authored-by: Periklis Tsirakidis <periklis@redhat.com>pull/4881/head
parent
11f699c5a6
commit
b31c3316fe
@ -0,0 +1,13 @@ |
||||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT |
||||
|
||||
go 1.16 |
||||
|
||||
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v14.2.0+incompatible |
||||
|
||||
replace github.com/containerd/containerd => github.com/containerd/containerd v1.4.3 |
||||
|
||||
replace github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.10.0 |
||||
|
||||
replace golang.org/x/text => golang.org/x/text v0.3.3 |
||||
|
||||
require github.com/operator-framework/operator-sdk v1.5.0 // cmd/operator-sdk |
@ -1,15 +1,20 @@ |
||||
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=loki-operator |
||||
LABEL operators.operatorframework.io.bundle.channels.v1=alpha |
||||
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.4.0 |
||||
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1 |
||||
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-unknown |
||||
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3 |
||||
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/ |
||||
|
||||
# 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/ |
||||
|
@ -1,11 +1,14 @@ |
||||
annotations: |
||||
operators.operatorframework.io.bundle.channels.v1: alpha |
||||
operators.operatorframework.io.bundle.manifests.v1: manifests/ |
||||
# Core bundle annotations. |
||||
operators.operatorframework.io.bundle.mediatype.v1: registry+v1 |
||||
operators.operatorframework.io.bundle.manifests.v1: manifests/ |
||||
operators.operatorframework.io.bundle.metadata.v1: metadata/ |
||||
operators.operatorframework.io.bundle.package.v1: loki-operator |
||||
operators.operatorframework.io.metrics.builder: operator-sdk-v1.4.0 |
||||
operators.operatorframework.io.bundle.channels.v1: alpha |
||||
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1 |
||||
operators.operatorframework.io.metrics.builder: operator-sdk-unknown |
||||
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3 |
||||
operators.operatorframework.io.test.config.v1: tests/scorecard/ |
||||
|
||||
# Annotations for testing. |
||||
operators.operatorframework.io.test.mediatype.v1: scorecard+v1 |
||||
operators.operatorframework.io.test.config.v1: tests/scorecard/ |
||||
|
Loading…
Reference in new issue