servicelb: fix ineffective toleration

noderole.kubernetes.io/master -> node-role.kubernetes.io/master
This commit is contained in:
Jacob Blain Christen 2020-06-11 14:39:12 -07:00
parent af10a574f1
commit 1ed12cffa0

View File

@ -363,7 +363,7 @@ func (h *handler) newDaemonSet(svc *core.Service) (*apps.DaemonSet, error) {
// Add toleration to noderole.kubernetes.io/master=*:NoSchedule
noScheduleToleration := core.Toleration{
Key: "noderole.kubernetes.io/master",
Key: "node-role.kubernetes.io/master",
Operator: "Exists",
Effect: "NoSchedule",
}