fix dynamic kubelet config tests

pull/8/head
David Ashpole 2018-05-29 09:34:40 -07:00
parent 8ad67d3437
commit 668e127a1e
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ func isKubeletConfigEnabled(f *framework.Framework) (bool, error) {
}
v, ok := cfgz.FeatureGates[string(features.DynamicKubeletConfig)]
if !ok {
return false, nil
return true, nil
}
return v, nil
}