make kubectl respect taint effect NoExecute

This commit is contained in:
Kevin
2017-02-26 21:26:24 +08:00
parent 2a29da1f03
commit f4d3339612
3 changed files with 23 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ func ParseTaint(st string) (v1.Taint, error) {
return taint, fmt.Errorf("invalid taint spec: %v, %s", st, strings.Join(errs, "; "))
}
if effect != v1.TaintEffectNoSchedule && effect != v1.TaintEffectPreferNoSchedule {
if effect != v1.TaintEffectNoSchedule && effect != v1.TaintEffectPreferNoSchedule && effect != v1.TaintEffectNoExecute {
return taint, fmt.Errorf("invalid taint spec: %v, unsupported taint effect", st)
}

View File

@@ -47,6 +47,10 @@ func TestTaintsVar(t *testing.T) {
{Key: "bing", Value: "bang", Effect: api.TaintEffectPreferNoSchedule},
},
},
{
f: "--t=dedicated-for=user1:NoExecute",
t: []api.Taint{{Key: "dedicated-for", Value: "user1", Effect: "NoExecute"}},
},
}
for i, c := range cases {