Tolerations
The tolerations
section can be used in conjunction with taints to ensure pipelines are not scheduled onto inappropriate nodes.
Example configuration:
1 kind: pipeline
2 type: kubernetes
3 name: default
4
5 steps:
6 - name: build
7 image: golang
8 commands:
9 - go build
10 - go test
11
12 tolerations:
13 - key: example-key
14 operator: Exists
15 effect: NoSchedule