-
Notifications
You must be signed in to change notification settings - Fork 180
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
Showing
2 changed files
with
229 additions
and
229 deletions.
There are no files selected for viewing
256 changes: 128 additions & 128 deletions
256
charts/dremio_v2/templates/crd-dremio-engines.dremio.com-v1.yml
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 |
---|---|---|
@@ -1,130 +1,130 @@ | ||
{{- if $.Values.engine.enabled -}} | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: engines.dremio.com | ||
spec: | ||
group: dremio.com | ||
names: | ||
kind: DremioEngine | ||
plural: dremioengines | ||
singular: dremioEngine | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.imageName | ||
name: IMAGE_NAME | ||
priority: 3 | ||
type: string | ||
- jsonPath: .spec.maxReplicas | ||
name: MAX_REPLICAS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .spec.minReplicas | ||
name: MIN_REPLICAS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .spec.replicas | ||
name: REPLICAS | ||
priority: 1 | ||
type: integer | ||
- jsonPath: .spec.size | ||
name: SIZE | ||
priority: 1 | ||
type: string | ||
- jsonPath: .status.runningExecutors | ||
name: RUNNING_EXECUTORS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .status.runningReplicas | ||
name: RUNNING_REPLICAS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .status.state | ||
name: STATE | ||
priority: 1 | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
imageName: | ||
description: Executor Image name | ||
type: string | ||
maxReplicas: | ||
description: TODO | ||
maximum: 128.0 | ||
minimum: 0.0 | ||
type: integer | ||
minReplicas: | ||
description: TODO | ||
maximum: 128.0 | ||
minimum: 0.0 | ||
type: integer | ||
replicas: | ||
description: Count of replicas comprising this engine | ||
maximum: 128.0 | ||
minimum: 0.0 | ||
type: integer | ||
size: | ||
description: "Then engine size, typically a T-shirt style name" | ||
enum: | ||
- LARGE_V1 | ||
- MEDIUM_V1 | ||
- SMALL_V1 | ||
- XXX_LARGE_V1 | ||
- XX_LARGE_V1 | ||
- XX_SMALL_V1 | ||
- X_LARGE_V1 | ||
- X_SMALL_V1 | ||
type: string | ||
required: | ||
- imageName | ||
- maxReplicas | ||
- minReplicas | ||
- replicas | ||
- size | ||
type: object | ||
status: | ||
properties: | ||
labelSelector: | ||
description: Label selector for the Replica scaling | ||
type: string | ||
message: | ||
description: TODO | ||
type: string | ||
observedGeneration: | ||
type: integer | ||
reason: | ||
description: TODO | ||
type: string | ||
runningExecutors: | ||
description: The status of executors that comprise the Engine | ||
type: integer | ||
runningReplicas: | ||
description: Count of replicas comprising this engine | ||
type: integer | ||
state: | ||
description: dTODO | ||
enum: | ||
- FAILED | ||
- RUNNING | ||
- STARTING | ||
type: string | ||
required: | ||
- message | ||
- runningReplicas | ||
- state | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
scale: | ||
labelSelectorPath: .status.labelSelector | ||
specReplicasPath: .spec.replicas | ||
statusReplicasPath: .status.runningReplicas | ||
status: {} | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: engines.dremio.com | ||
spec: | ||
group: dremio.com | ||
names: | ||
kind: DremioEngine | ||
plural: dremioengines | ||
singular: dremioEngine | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.imageName | ||
name: IMAGE_NAME | ||
priority: 3 | ||
type: string | ||
- jsonPath: .spec.maxReplicas | ||
name: MAX_REPLICAS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .spec.minReplicas | ||
name: MIN_REPLICAS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .spec.replicas | ||
name: REPLICAS | ||
priority: 1 | ||
type: integer | ||
- jsonPath: .spec.size | ||
name: SIZE | ||
priority: 1 | ||
type: string | ||
- jsonPath: .status.runningExecutors | ||
name: RUNNING_EXECUTORS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .status.runningReplicas | ||
name: RUNNING_REPLICAS | ||
priority: 2 | ||
type: integer | ||
- jsonPath: .status.state | ||
name: STATE | ||
priority: 1 | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
imageName: | ||
description: Executor Image name | ||
type: string | ||
maxReplicas: | ||
description: TODO | ||
maximum: 128.0 | ||
minimum: 0.0 | ||
type: integer | ||
minReplicas: | ||
description: TODO | ||
maximum: 128.0 | ||
minimum: 0.0 | ||
type: integer | ||
replicas: | ||
description: Count of replicas comprising this engine | ||
maximum: 128.0 | ||
minimum: 0.0 | ||
type: integer | ||
size: | ||
description: "Then engine size, typically a T-shirt style name" | ||
enum: | ||
- LARGE_V1 | ||
- MEDIUM_V1 | ||
- SMALL_V1 | ||
- XXX_LARGE_V1 | ||
- XX_LARGE_V1 | ||
- XX_SMALL_V1 | ||
- X_LARGE_V1 | ||
- X_SMALL_V1 | ||
type: string | ||
required: | ||
- imageName | ||
- maxReplicas | ||
- minReplicas | ||
- replicas | ||
- size | ||
type: object | ||
status: | ||
properties: | ||
labelSelector: | ||
description: Label selector for the Replica scaling | ||
type: string | ||
message: | ||
description: TODO | ||
type: string | ||
observedGeneration: | ||
type: integer | ||
reason: | ||
description: TODO | ||
type: string | ||
runningExecutors: | ||
description: The status of executors that comprise the Engine | ||
type: integer | ||
runningReplicas: | ||
description: Count of replicas comprising this engine | ||
type: integer | ||
state: | ||
description: dTODO | ||
enum: | ||
- FAILED | ||
- RUNNING | ||
- STARTING | ||
type: string | ||
required: | ||
- message | ||
- runningReplicas | ||
- state | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
scale: | ||
labelSelectorPath: .status.labelSelector | ||
specReplicasPath: .spec.replicas | ||
statusReplicasPath: .status.runningReplicas | ||
status: {} | ||
{{- end -}} |
Oops, something went wrong.