You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the issue:
To use a different port or non default FQDN for the scheduler we provide DASK_SCHEDULER_ADDRESS env in daskcluster.spec.worker.spec.containers[0].env, however the operator creates 2 items in worker deployment env. The last one overrides the first in the pod's env. So we cannot change DASK_SCHEDULER_ADDRESS environment variable from dask kubernetes objects.
Describe the issue:
To use a different port or non default FQDN for the scheduler we provide
DASK_SCHEDULER_ADDRESS
env indaskcluster
.spec.worker.spec.containers[0].env
, however the operator creates 2 items in worker deployment env. The last one overrides the first in the pod's env. So we cannot changeDASK_SCHEDULER_ADDRESS
environment variable from dask kubernetes objects.Minimal Complete Verifiable Example:
DaskWorkerGroup
Worker Pod
Anything else we need to know?:
Duplicate items with same names in container["env"] and env should be removed from env before adding it to configuration
Current:
dask-kubernetes/dask_kubernetes/operator/controller/controller.py
Lines 166 to 170 in b668cc6
dask-kubernetes/dask_kubernetes/operator/controller/controller.py
Lines 202 to 206 in b668cc6
Fix:
Environment:
2024.3.0 dask operator
The text was updated successfully, but these errors were encountered: