From ecc8cab59a81d4cb44509eaf679fda563e55272f Mon Sep 17 00:00:00 2001 From: Ilija Vukotic Date: Wed, 6 Dec 2023 13:16:47 -0600 Subject: [PATCH] new dask dashboard address. --- dask_config.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/dask_config.yaml b/dask_config.yaml index bbd5baa..78309d0 100644 --- a/dask_config.yaml +++ b/dask_config.yaml @@ -12,6 +12,7 @@ labextension: initial: [] distributed: + dashboard: "https://{host}.dask.af.uchicago.edu/:{port}/status" scheduler: work-stealing: false @@ -66,7 +67,8 @@ kubernetes: - name: dask-scheduler image: ghcr.io/dask/dask:latest args: - - dask-scheduler + - dask + - scheduler - --port - "8786" - --bokeh-port @@ -89,7 +91,8 @@ kubernetes: - name: dask-worker image: ghcr.io/dask/dask:latest args: - - dask-worker + - dask + - worker - --nthreads - "2" # - --no-bokeh @@ -99,8 +102,8 @@ kubernetes: - "60" resources: limits: - cpu: "1.75" - memory: 6G + cpu: "2" + memory: 3G requests: - cpu: "1.75" - memory: 6G + cpu: "1" + memory: 2G