Skip to content

Commit

Permalink
Merge pull request #503 from TomAugspurger/bump-dask-image
Browse files Browse the repository at this point in the history
bump dask gateway image version
  • Loading branch information
TomAugspurger authored Jan 23, 2020
2 parents 6ce547a + 5d97413 commit e9a1742
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pangeo-deploy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ pangeo:
enabled: false
gateway:
clusterManager:
image:
name: pangeo/base-notebook
tag: 2019.12.24
clusterStartTimeout: 600
workerStartTimeout: 600
worker:
Expand All @@ -55,6 +58,7 @@ pangeo:
value: "worker"
extraConfig: |
from dask_gateway_server.options import Options, Integer, Float, String
def option_handler(options):
if ":" not in options.image:
raise ValueError("When specifying an image you must also provide a tag")
Expand All @@ -67,7 +71,7 @@ pangeo:
c.DaskGateway.cluster_manager_options = Options(
Integer("worker_cores", 2, min=1, max=4, label="Worker Cores"),
Float("worker_memory", 4, min=1, max=8, label="Worker Memory (GiB)"),
String("image", default="daskgateway/dask-gateway:0.6.1", label="Image"),
String("image", default="pangeo/base-notebook:2019.12.24", label="Image"),
handler=option_handler,
)
Expand Down

0 comments on commit e9a1742

Please sign in to comment.