Skip to content

Commit

Permalink
bump dask to 1.1.0 (helm#10941)
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato authored and k8s-ci-robot committed Jan 28, 2019
1 parent dbcabd1 commit d7c49ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions stable/dask/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dask
version: 2.0.1
appVersion: 1.0.0
version: 2.1.0
appVersion: 1.1.0
description: Distributed computation in Python with task scheduling
home: https://dask.pydata.org
icon: https://avatars3.githubusercontent.com/u/17131925?v=3&s=200
Expand Down
6 changes: 3 additions & 3 deletions stable/dask/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The following tables list the configurable parameters of the Dask chart and thei
| -------------------------- | -------------------------| -----------------|
| `scheduler.name` | Dask scheduler name | `scheduler` |
| `scheduler.image` | Container image name | `daskdev/dask` |
| `scheduler.imageTag` | Container image tag | `1.0.0` |
| `scheduler.imageTag` | Container image tag | `1.1.0` |
| `scheduler.replicas` | k8s deployment replicas | `1` |
| `scheduler.resources` | Container resources | `{}` |

Expand All @@ -50,7 +50,7 @@ The following tables list the configurable parameters of the Dask chart and thei
| ----------------------- | ---------------------------------| ---------------|
| `worker.name` | Dask worker name | `worker` |
| `worker.image` | Container image name | `daskdev/dask` |
| `worker.imageTag` | Container image tag | `1.0.0` |
| `worker.imageTag` | Container image tag | `1.1.0` |
| `worker.replicas` | k8s hpa and deployment replicas | `3` |
| `worker.resources` | Container resources | `{}` |
|
Expand All @@ -62,7 +62,7 @@ The following tables list the configurable parameters of the Dask chart and thei
| `jupyter.name` | Jupyter name | `jupyter` |
| `jupyter.enabled` | Include optional Jupyter server | `true` |
| `jupyter.image` | Container image name | `daskdev/dask-notebook` |
| `jupyter.imageTag` | Container image tag | `1.0.0` |
| `jupyter.imageTag` | Container image tag | `1.1.0` |
| `jupyter.replicas` | k8s deployment replicas | `1` |
| `jupyter.servicePort` | k8s service port | `80` |
| `jupyter.resources` | Container resources | `{}` |
Expand Down
6 changes: 3 additions & 3 deletions stable/dask/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ scheduler:
name: scheduler
image:
repository: "daskdev/dask"
tag: 1.0.0
tag: 1.1.0
pullPolicy: IfNotPresent
replicas: 1
serviceType: "LoadBalancer"
Expand All @@ -26,7 +26,7 @@ worker:
name: worker
image:
repository: "daskdev/dask"
tag: 1.0.0
tag: 1.1.0
pullPolicy: IfNotPresent
replicas: 3
aptPackages: >-
Expand All @@ -51,7 +51,7 @@ jupyter:
enabled: true
image:
repository: "daskdev/dask-notebook"
tag: 1.0.0
tag: 1.1.0
pullPolicy: IfNotPresent
replicas: 1
serviceType: "LoadBalancer"
Expand Down

0 comments on commit d7c49ed

Please sign in to comment.