Created
March 30, 2020 18:38
-
-
Save jhamman/82524b8cb13359a912506dc0eb50dda8 to your computer and use it in GitHub Desktop.
dask_k8s.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# file: dask_config.yaml | |
kubernetes: | |
worker-template: | |
spec: | |
containers: | |
- args: | |
- dask-worker | |
- --nthreads | |
- '2' | |
- --memory-limit | |
- "7GB" | |
resources: | |
limits: | |
cpu: 2 | |
memory: "7G" | |
requests: | |
cpu: 1 | |
memory: "7G" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment