-
Notifications
You must be signed in to change notification settings - Fork 210
/
status-crd.yaml
27 lines (26 loc) · 1.03 KB
/
status-crd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
# name must match the spec fields below, and be in the form: <plural>.<group>
name: operatorstatuses.operatorstatus.openshift.io
spec:
# TODO: remove this version: "v1" field and match version used by installer
version: "v1"
# group name to use for REST API: /apis/<group>/<version>
group: operatorstatus.openshift.io
# list of versions supported by this CustomResourceDefinition
versions:
- name: v1
# Each version can be enabled/disabled by Served flag.
served: true
# One and only one version must be marked as the storage version.
storage: true
# either Namespaced or Cluster
scope: Namespaced
names:
# plural name to be used in the URL: /apis/<group>/<version>/<plural>
plural: operatorstatuses
# singular name to be used as an alias on the CLI and for display
singular: operatorstatus
# kind is normally the CamelCased singular type. Your resource manifests use this.
kind: OperatorStatus