-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d08e8b
commit 3037334
Showing
15 changed files
with
645 additions
and
0 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
80 changes: 80 additions & 0 deletions
80
...ests/0000_00_cluster-version-operator_01_clusterversionoperators-CustomNoUpgrade.crd.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,80 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
api-approved.openshift.io: https://github.com/openshift/api/pull/2044 | ||
api.openshift.io/merged-by-featuregates: "true" | ||
include.release.openshift.io/ibm-cloud-managed: "true" | ||
include.release.openshift.io/self-managed-high-availability: "true" | ||
release.openshift.io/feature-set: CustomNoUpgrade | ||
name: clusterversionoperators.operator.openshift.io | ||
spec: | ||
group: operator.openshift.io | ||
names: | ||
kind: ClusterVersionOperator | ||
listKind: ClusterVersionOperatorList | ||
plural: clusterversionoperators | ||
singular: clusterversionoperator | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: "ClusterVersionOperator holds cluster-wide information about | ||
the Cluster Version Operator. \n 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." | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: spec is the specification of the desired behavior of the | ||
Cluster Version Operator. | ||
properties: | ||
operatorLogLevel: | ||
default: Normal | ||
description: "operatorLogLevel is an intent based logging for the | ||
operator itself. It does not give fine grained control, but it | ||
is a simple way to manage coarse grained logging choices that operators | ||
have to interpret for themselves. \n Valid values are: \"Normal\", | ||
\"Debug\", \"Trace\", \"TraceAll\". Defaults to \"Normal\"." | ||
enum: | ||
- "" | ||
- Normal | ||
- Debug | ||
- Trace | ||
- TraceAll | ||
type: string | ||
type: object | ||
status: | ||
description: status is the most recently observed status of the Cluster | ||
Version Operator. | ||
properties: | ||
observedGeneration: | ||
description: observedGeneration is the last generation change you've | ||
dealt with | ||
format: int64 | ||
type: integer | ||
type: object | ||
required: | ||
- metadata | ||
- spec | ||
type: object | ||
x-kubernetes-validations: | ||
- message: ClusterVersionOperator is a singleton; the .metadata.name field | ||
must be 'cluster' | ||
rule: self.metadata.name == 'cluster' | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.