|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + creationTimestamp: null |
| 5 | + name: scaleops.analysis.scaleops.sh |
| 6 | +spec: |
| 7 | + group: analysis.scaleops.sh |
| 8 | + names: |
| 9 | + kind: ScaleOps |
| 10 | + listKind: ScaleOpsList |
| 11 | + plural: scaleops |
| 12 | + singular: scaleops |
| 13 | + scope: Namespaced |
| 14 | + versions: |
| 15 | + - name: v1 |
| 16 | + schema: |
| 17 | + openAPIV3Schema: |
| 18 | + description: ScaleOps is the Schema for the scaleops API |
| 19 | + properties: |
| 20 | + apiVersion: |
| 21 | + description: 'APIVersion defines the versioned schema of this representation |
| 22 | + of an object. Servers should convert recognized schemas to the latest |
| 23 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 24 | + type: string |
| 25 | + kind: |
| 26 | + description: 'Kind is a string value representing the REST resource this |
| 27 | + object represents. Servers may infer this from the endpoint the client |
| 28 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 29 | + type: string |
| 30 | + metadata: |
| 31 | + type: object |
| 32 | + spec: |
| 33 | + description: Spec defines the desired state of ScaleOps |
| 34 | + properties: |
| 35 | + openshiftSSO: |
| 36 | + description: Configure OpenShift SSO |
| 37 | + properties: |
| 38 | + clientID: |
| 39 | + default: scaleops |
| 40 | + description: The name of the OauthClient |
| 41 | + minLength: 1 |
| 42 | + type: string |
| 43 | + enabled: |
| 44 | + default: false |
| 45 | + description: Allow ScaleOps to access the OAuthClient associated |
| 46 | + with the specified clientID, or create a new OAuthClient and |
| 47 | + configure ScaleOps to use it. |
| 48 | + type: boolean |
| 49 | + loginRedirectURL: |
| 50 | + description: Used in the login flow, the URL to redirect to after |
| 51 | + successful login. |
| 52 | + example: https://scaleops.example.com/auth/callback |
| 53 | + type: string |
| 54 | + required: |
| 55 | + - enabled |
| 56 | + - clientID |
| 57 | + type: object |
| 58 | + x-kubernetes-preserve-unknown-fields: true |
| 59 | + type: object |
| 60 | + x-kubernetes-preserve-unknown-fields: true |
| 61 | + status: |
| 62 | + description: Status defines the observed state of ScaleOps |
| 63 | + type: object |
| 64 | + x-kubernetes-preserve-unknown-fields: true |
| 65 | + type: object |
| 66 | + served: true |
| 67 | + storage: true |
| 68 | + subresources: |
| 69 | + status: {} |
| 70 | +status: |
| 71 | + acceptedNames: |
| 72 | + kind: "" |
| 73 | + plural: "" |
| 74 | + conditions: null |
| 75 | + storedVersions: null |
0 commit comments