-
-
Notifications
You must be signed in to change notification settings - Fork 149
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
16 changed files
with
422 additions
and
11 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
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
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
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
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
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
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
1 change: 1 addition & 0 deletions
1
dask_kubernetes/operator/customresources/daskautoscaler.patch.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 @@ | ||
[] |
37 changes: 37 additions & 0 deletions
37
dask_kubernetes/operator/customresources/daskautoscaler.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,37 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: daskautoscalers.kubernetes.dask.org | ||
spec: | ||
scope: Namespaced | ||
group: kubernetes.dask.org | ||
names: | ||
kind: DaskAutoscaler | ||
plural: daskautoscalers | ||
singular: daskautoscaler | ||
versions: | ||
- name: v1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
spec: | ||
type: object | ||
required: | ||
- cluster | ||
- minimum | ||
- maximum | ||
properties: | ||
cluster: | ||
type: string | ||
description: Name of the cluster to associate this worker group with | ||
minimum: | ||
type: integer | ||
description: Minimum number of workers | ||
maximum: | ||
type: integer | ||
description: Maximum number of workers | ||
status: | ||
type: object |
37 changes: 37 additions & 0 deletions
37
dask_kubernetes/operator/deployment/helm/dask-kubernetes-operator/crds/daskautoscaler.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,37 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: daskautoscalers.kubernetes.dask.org | ||
spec: | ||
group: kubernetes.dask.org | ||
names: | ||
kind: DaskAutoscaler | ||
plural: daskautoscalers | ||
singular: daskautoscaler | ||
scope: Namespaced | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
cluster: | ||
description: Name of the cluster to associate this worker group with | ||
type: string | ||
maximum: | ||
description: Maximum number of workers | ||
type: integer | ||
minimum: | ||
description: Minimum number of workers | ||
type: integer | ||
required: | ||
- cluster | ||
- minimum | ||
- maximum | ||
type: object | ||
status: | ||
type: object | ||
type: object | ||
served: true | ||
storage: true |
37 changes: 37 additions & 0 deletions
37
dask_kubernetes/operator/deployment/manifests/daskautoscaler.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,37 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: daskautoscalers.kubernetes.dask.org | ||
spec: | ||
group: kubernetes.dask.org | ||
names: | ||
kind: DaskAutoscaler | ||
plural: daskautoscalers | ||
singular: daskautoscaler | ||
scope: Namespaced | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
cluster: | ||
description: Name of the cluster to associate this worker group with | ||
type: string | ||
maximum: | ||
description: Maximum number of workers | ||
type: integer | ||
minimum: | ||
description: Minimum number of workers | ||
type: integer | ||
required: | ||
- cluster | ||
- minimum | ||
- maximum | ||
type: object | ||
status: | ||
type: object | ||
type: object | ||
served: true | ||
storage: true |
Oops, something went wrong.