Shaun Cutts
09/04/2020, 5:44 PMexecutor = DaskExecutor(
address="...",
cluster_class="dask_gateway.GatewayCluster",
cluster_kwargs={
image="my/image/...",
image_pull_secret="..." # ???
},
adapt_kwargs={minimum=2, maximum=10}
)
nicholas
09/04/2020, 6:03 PMcluster_kwargs
are passed directly to the Dask cluster object so aren't within the Prefect purview.
If you're looking for Prefect-specific image pull secrets, you'll want to specify those on the environment instead. For more info on that, take a look at https://docs.prefect.io/orchestration/execution/dask_k8s_environment.html#overviewShaun Cutts
09/04/2020, 6:09 PM