Skip to content

Commit

Permalink
Add tolerations for notebook execution (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
CiprianAnton authored Oct 21, 2024
1 parent dd14dcb commit 3d254e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion getting-started/templates/node-selectors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ global:

# Tolerations for node taints to allow the pod to be scheduled on tainted nodes.
servicesTolerations: &servicesTolerations []
notebookExecutionTolerations: &notebookExecutionTolerations []
notebookExecutionTolerations: &notebookExecutionTolerations
- key: "notebook_execution"
operator: "Equal"
value: "true"
effect: "NoSchedule"
jupyterTolerations: &jupyterTolerations
- key: hub.jupyter.org/dedicated
operator: "Equal"
Expand Down

0 comments on commit 3d254e0

Please sign in to comment.