Files
configpolicy/group_vars/k8s-iot-net-ctrl.yml
Dustin C. Hatch 9e7b9420f4 k8s-iot-net-ctrl: Add node role taints
Previously, _node-474c83.k8s.pyrocufflink.black_ was tainted
`du5t1n.me/machine=raspberrypi`, which prevented arbitrary pods from
being scheduled on it.  Now that there are two more Raspberry Pi nodes
in the cluster, and arbitrary pods _should_ be scheduled on them, this
taint no longer makes sense.  Instead, having specific taints for the
node's roles is more clear.
2025-07-29 21:44:29 -05:00

10 lines
245 B
YAML

k8s_node_labels:
node-role.kubernetes.io/zigbee-ctrl: ''
node-role.kubernetes.io/zwave-ctrl: ''
k8s_node_taints:
- key: node-role.kubernetes.io/zigbee-ctrl
effect: NoSchedule
- key: node-role.kubernetes.io/zwave-ctrl
effect: NoSchedule