|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + annotations: |
| 5 | + api-approved.openshift.io: https://github.com/openshift/api/pull/2044 |
| 6 | + api.openshift.io/merged-by-featuregates: "true" |
| 7 | + include.release.openshift.io/ibm-cloud-managed: "true" |
| 8 | + include.release.openshift.io/self-managed-high-availability: "true" |
| 9 | + release.openshift.io/feature-set: TechPreviewNoUpgrade |
| 10 | + name: clusterversionoperators.operator.openshift.io |
| 11 | +spec: |
| 12 | + group: operator.openshift.io |
| 13 | + names: |
| 14 | + kind: ClusterVersionOperator |
| 15 | + listKind: ClusterVersionOperatorList |
| 16 | + plural: clusterversionoperators |
| 17 | + singular: clusterversionoperator |
| 18 | + scope: Cluster |
| 19 | + versions: |
| 20 | + - name: v1alpha1 |
| 21 | + schema: |
| 22 | + openAPIV3Schema: |
| 23 | + description: |- |
| 24 | + ClusterVersionOperator holds cluster-wide information about the Cluster Version Operator. |
| 25 | +
|
| 26 | + Compatibility level 4: No compatibility is provided, the API can change at any point for any reason. These capabilities should not be used by applications needing long term support. |
| 27 | + properties: |
| 28 | + apiVersion: |
| 29 | + description: |- |
| 30 | + APIVersion defines the versioned schema of this representation of an object. |
| 31 | + Servers should convert recognized schemas to the latest internal value, and |
| 32 | + may reject unrecognized values. |
| 33 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 34 | + type: string |
| 35 | + kind: |
| 36 | + description: |- |
| 37 | + Kind is a string value representing the REST resource this object represents. |
| 38 | + Servers may infer this from the endpoint the client submits requests to. |
| 39 | + Cannot be updated. |
| 40 | + In CamelCase. |
| 41 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 42 | + type: string |
| 43 | + metadata: |
| 44 | + type: object |
| 45 | + spec: |
| 46 | + description: spec is the specification of the desired behavior of the |
| 47 | + Cluster Version Operator. |
| 48 | + properties: |
| 49 | + operatorLogLevel: |
| 50 | + default: Normal |
| 51 | + description: |- |
| 52 | + operatorLogLevel is an intent based logging for the operator itself. It does not give fine grained control, but it is a |
| 53 | + simple way to manage coarse grained logging choices that operators have to interpret for themselves. |
| 54 | +
|
| 55 | + Valid values are: "Normal", "Debug", "Trace", "TraceAll". |
| 56 | + Defaults to "Normal". |
| 57 | + enum: |
| 58 | + - "" |
| 59 | + - Normal |
| 60 | + - Debug |
| 61 | + - Trace |
| 62 | + - TraceAll |
| 63 | + type: string |
| 64 | + type: object |
| 65 | + status: |
| 66 | + description: status is the most recently observed status of the Cluster |
| 67 | + Version Operator. |
| 68 | + properties: |
| 69 | + observedGeneration: |
| 70 | + description: |- |
| 71 | + observedGeneration represents the most recent generation observed by the operator and specifies the version of |
| 72 | + the spec field currently being synced. |
| 73 | + format: int64 |
| 74 | + type: integer |
| 75 | + x-kubernetes-validations: |
| 76 | + - message: observedGeneration must only increase |
| 77 | + rule: self >= oldSelf |
| 78 | + type: object |
| 79 | + required: |
| 80 | + - metadata |
| 81 | + - spec |
| 82 | + type: object |
| 83 | + x-kubernetes-validations: |
| 84 | + - message: ClusterVersionOperator is a singleton; the .metadata.name field |
| 85 | + must be 'cluster' |
| 86 | + rule: self.metadata.name == 'cluster' |
| 87 | + served: true |
| 88 | + storage: true |
| 89 | + subresources: |
| 90 | + status: {} |
0 commit comments