deis / controller

Deis Workflow Controller (API)
https://deis.com
MIT License
41 stars 53 forks source link

feature/tolerations #1331

Closed ghostec closed 5 years ago

ghostec commented 5 years ago

Added support for tolerations per app_type (web, cmd, worker...)

It should be set via KUBERNETES_PODS_TOLERATIONS environment variable in the stringified format of the example below:

{
  "web": [
    {
      "key": "some_key",
      "value": "some_value",
      "operator": "Equal",
      "effect": "NoSchedule"
    }
  ]
}