-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add operator hub bundle for openshift
Signed-off-by: Nikhil Thomas <[email protected]>
- Loading branch information
1 parent
27de454
commit 6547229
Showing
7 changed files
with
209 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
...torhub/openshift/release-artifacts/bundle/manifests/operator.tekton.dev_tektonchains.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
operator.tekton.dev/release: devel | ||
version: devel | ||
name: tektonchains.operator.tekton.dev | ||
spec: | ||
group: operator.tekton.dev | ||
names: | ||
kind: TektonChain | ||
listKind: TektonChainList | ||
plural: tektonchains | ||
singular: tektonchain | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.version | ||
name: Version | ||
type: string | ||
- jsonPath: .status.conditions[?(@.type=="Ready")].status | ||
name: Ready | ||
type: string | ||
- jsonPath: .status.conditions[?(@.type=="Ready")].reason | ||
name: Reason | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Schema for the TektonChains API | ||
type: object | ||
x-kubernetes-preserve-unknown-fields: true | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
operatorhub/openshift/release-artifacts/bundle/manifests/operator.tekton.dev_tektonhubs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
operator.tekton.dev/release: devel | ||
version: devel | ||
name: tektonhubs.operator.tekton.dev | ||
spec: | ||
group: operator.tekton.dev | ||
names: | ||
kind: TektonHub | ||
listKind: TektonHubList | ||
plural: tektonhubs | ||
singular: tektonhub | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.version | ||
name: Version | ||
type: string | ||
- jsonPath: .status.conditions[?(@.type=="Ready")].status | ||
name: Ready | ||
type: string | ||
- jsonPath: .status.conditions[?(@.type=="Ready")].reason | ||
name: Reason | ||
type: string | ||
- jsonPath: .status.apiUrl | ||
name: ApiUrl | ||
type: string | ||
- jsonPath: .status.uiUrl | ||
name: UiUrl | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Schema for the tektonhubs API | ||
type: object | ||
x-kubernetes-preserve-unknown-fields: true | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
14 changes: 14 additions & 0 deletions
14
...ts/bundle/manifests/tekton-config-read-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
name: tekton-config-read-role | ||
rules: | ||
- apiGroups: | ||
- operator.tekton.dev | ||
resources: | ||
- tektonconfigs | ||
verbs: | ||
- get | ||
- watch | ||
- list |
Oops, something went wrong.