Skip to content

Commit

Permalink
SAASMLOPS-1403 Add tolerations to bytewax pod spec (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-vinnik-sp authored and nick-amaya-sp committed Jul 23, 2024
1 parent e980f33 commit a5030cb
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,14 @@ def _create_job_definition(self, job_id, namespace, pods, env, index_offset=0):
"name": self._configmap_name(job_id),
},
],
"tolerations": [
{
"key": "bytewax",
"operator": "Equal",
"value": "instance",
"effect": "NoSchedule",
}
],
},
},
},
Expand Down

0 comments on commit a5030cb

Please sign in to comment.