Disable TaintNodesByCondition in node e2e tests, because node lifecycle controller does not run in the tests

This commit is contained in:
Bobby (Babak) Salamat 2019-01-24 14:58:42 -08:00
parent 763cb708d1
commit 37be9f590d

View File

@ -55,7 +55,7 @@ func (a *APIServer) Start() error {
} }
o.ServiceClusterIPRange = *ipnet o.ServiceClusterIPRange = *ipnet
o.AllowPrivileged = true o.AllowPrivileged = true
o.Admission.GenericAdmission.DisablePlugins = []string{"ServiceAccount"} o.Admission.GenericAdmission.DisablePlugins = []string{"ServiceAccount", "TaintNodesByCondition"}
errCh := make(chan error) errCh := make(chan error)
go func() { go func() {
defer close(errCh) defer close(errCh)