kube-prometheus/examples/tolerations.libsonnet
paulfantom 2913c866bb
fix references to old variables and to other files
Signed-off-by: paulfantom <pawel@krupa.net.pl>
2021-01-19 13:56:20 +01:00

21 lines
336 B
Jsonnet

{
prometheus+: {
prometheus+: {
spec+: {
tolerations: [
{
key: 'key1',
operator: 'Equal',
value: 'value1',
effect: 'NoSchedule',
},
{
key: 'key2',
operator: 'Exists',
},
],
},
},
},
}