Skip to content

Commit 72df0ab

Browse files
committed
added example of happy path and operator that demands yamllint
1 parent 2bf3b09 commit 72df0ab

22 files changed

+5071
-1
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# VSCode project settings
2+
.vscode/
3+
4+
# InteliJ project settings
5+
.idea/
6+
7+
# Vim swap files
8+
.*.sw?

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# operator-pipelines-test
1+
# operator-pipelines-test
2+
This repository hosts the example operators,
3+
that are used as input for testing the [Operator-pipelines](https://github.com/redhat-openshift-ecosystem/operator-pipelines)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM scratch
2+
3+
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
4+
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
5+
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
6+
LABEL operators.operatorframework.io.bundle.package.v1=kogito-operator
7+
LABEL operators.operatorframework.io.bundle.channels.v1=alpha,1.x
8+
LABEL operators.operatorframework.io.bundle.channel.default.v1=1.x
9+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.2.0
10+
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
11+
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v2
12+
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
13+
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
14+
15+
COPY manifests /manifests/
16+
COPY metadata /metadata/
17+
COPY tests/scorecard /tests/scorecard/
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
cert_project_id: "5f0e4759dd19c7063a78b1f8"

operators/kogito-operator/1.6.0-ok/manifests/app.kiegroup.org_kogitobuilds.yaml

Lines changed: 354 additions & 0 deletions
Large diffs are not rendered by default.

operators/kogito-operator/1.6.0-ok/manifests/app.kiegroup.org_kogitoinfras.yaml

Lines changed: 348 additions & 0 deletions
Large diffs are not rendered by default.

operators/kogito-operator/1.6.0-ok/manifests/app.kiegroup.org_kogitoruntimes.yaml

Lines changed: 593 additions & 0 deletions
Large diffs are not rendered by default.

operators/kogito-operator/1.6.0-ok/manifests/app.kiegroup.org_kogitosupportingservices.yaml

Lines changed: 601 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
apiVersion: v1
3+
kind: ServiceAccount
4+
metadata:
5+
creationTimestamp: null
6+
name: kogito-operator-controller-manager

operators/kogito-operator/1.6.0-ok/manifests/kogito-operator.clusterserviceversion.yaml

Lines changed: 545 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)