Skip to content

Commit

Permalink
add CRDs for OperatorGroup and OperatorGroupList
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Peeler committed Sep 21, 2018
1 parent f5c3630 commit f876b79
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 0 deletions.
51 changes: 51 additions & 0 deletions deploy/chart/templates/14-operatorgroup.crd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: operatorgroups.operators.coreos.com.operators.coreos.com
spec:
group: operators.coreos.com.operators.coreos.com
names:
kind: OperatorGroup
plural: operatorgroups
scope: Namespaced
validation:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
selector:
type: object
serviceAccount:
type: object
required:
- selector
- serviceAccount
type: object
status:
properties:
namespaces:
items:
type: object
type: array
required:
- namespaces
type: object
required:
- metadata
- spec
version: v1alpha2
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
65 changes: 65 additions & 0 deletions deploy/chart/templates/15-operatorgrouplist.crd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
labels:
controller-tools.k8s.io: "1.0"
name: operatorgrouplists.operators.coreos.com.operators.coreos.com
spec:
group: operators.coreos.com.operators.coreos.com
names:
kind: OperatorGroupList
plural: operatorgrouplists
scope: Namespaced
validation:
openAPIV3Schema:
properties:
apiVersion:
type: string
items:
items:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
selector:
type: object
serviceAccount:
type: object
required:
- selector
- serviceAccount
type: object
status:
properties:
namespaces:
items:
type: object
type: array
required:
- namespaces
type: object
required:
- metadata
- spec
type: object
type: array
kind:
type: string
metadata:
type: object
required:
- metadata
- items
version: v1alpha2
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []

0 comments on commit f876b79

Please sign in to comment.