Skip to content

Instantly share code, notes, and snippets.

@goodgravy
Created August 19, 2022 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goodgravy/e8004bbd455e46ee6576e4f8aba0951c to your computer and use it in GitHub Desktop.
Save goodgravy/e8004bbd455e46ee6576e4f8aba0951c to your computer and use it in GitHub Desktop.
# Scheduler spec
apiVersion: v1
kind: Pod
metadata:
name: dask-debugger
namespace: prefect
spec:
restartPolicy: Never
containers:
- image: ghcr.io/dask/dask:latest
imagePullPolicy: IfNotPresent
name: dask-debugger
env:
- name: EXTRA_PIP_PACKAGES
value: dask_kubernetes
command: ["sleep", "3600"]
resources:
limits:
cpu: "1"
memory: 2G
requests:
cpu: "1"
memory: 2G
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment