<@ULVA73B9P> what should the extraArgs be in the w...
# ask-marvin
d
@Marvin what should the extraArgs be in the worker helm chart values to automatically start the worker with a pool called ā€˜k8s’?
m
To automatically start a worker with a pool called 'k8s' using the Prefect worker Helm chart, you can set the
extraArgs
in your
values.yaml
file like this:
Copy code
yaml
extraArgs:
  - "--pool=k8s"
This will pass the
--pool=k8s
argument to the worker, instructing it to use the 'k8s' pool. For more details on deploying a worker using Helm, you can refer to the Prefect Kubernetes deployment guide. If you need to add other configurations or secrets, you might find additional instructions in the Helm chart README. If you have any more questions or need further assistance, feel free to ask.
m
d
Thanks Mitch!
šŸ¤ 1