Skip to content

Commit

Permalink
refactoring: refactored variable ComponentQuayPostgres to match the c…
Browse files Browse the repository at this point in the history
…omponent name

This reverts commit 4bcf6c8.
  • Loading branch information
Shubhra Deshpande committed Oct 10, 2024
1 parent 4bcf6c8 commit f8d1fc9
Show file tree
Hide file tree
Showing 8 changed files with 1,380 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bundle/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM scratch

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=quay-operator-tng
LABEL operators.operatorframework.io.bundle.channels.v1=dev
LABEL operators.operatorframework.io.bundle.channel.default.v1=dev

ADD manifests /manifests
ADD metadata/annotations.yaml /metadata/annotations.yaml
278 changes: 278 additions & 0 deletions bundle/manifests/quay-operator.clusterserviceversion.yaml

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions bundle/manifests/quay-operator.service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: quay-operator
spec:
ports:
- protocol: TCP
name: http
port: 7071
targetPort: 7071
selector:
name: quay-operator-alm-owned
1,049 changes: 1,049 additions & 0 deletions bundle/manifests/quayregistries.crd.yaml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
annotations:
operators.operatorframework.io.bundle.channel.default.v1: alpha
operators.operatorframework.io.bundle.channels.v1: alpha
operators.operatorframework.io.bundle.manifests.v1: manifests/
operators.operatorframework.io.bundle.mediatype.v1: registry+v1
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: quay-operator
7 changes: 7 additions & 0 deletions bundle/quay-operator.catalogsource.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: operators.coreos.com/v1alpha1
kind: CatalogSource
metadata:
name: quay-operator-tng
spec:
sourceType: grpc
image: quay.io/projectquay/quay-operator-index
5 changes: 5 additions & 0 deletions bundle/quay-operator.operatorgroup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: operators.coreos.com/v1
kind: OperatorGroup
metadata:
name: quay-operator
spec: {}
11 changes: 11 additions & 0 deletions bundle/quay-operator.subscription.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
name: quay-operator-tng
spec:
channel: alpha
installPlanApproval: Automatic
name: quay-operator-tng
source: quay-operator-tng
sourceNamespace: openshift-marketplace
startingCSV: quay-operator.v3.6.0-alpha.4

0 comments on commit f8d1fc9

Please sign in to comment.