Fix minor err in kubeadm

This commit is contained in:
stewart-yu 2017-11-29 17:54:20 +08:00
parent 2c9ffc0e88
commit f41f1887e2
2 changed files with 7 additions and 7 deletions

View File

@ -168,16 +168,16 @@ func TestResolveFeatureGateDependencies(t *testing.T) {
expectedFeatures: map[string]bool{}, expectedFeatures: map[string]bool{},
}, },
{ // others flags { // others flags
inputFeatures: map[string]bool{"SupportIPVSProxyMode": true}, inputFeatures: map[string]bool{CoreDNS: true},
expectedFeatures: map[string]bool{"SupportIPVSProxyMode": true}, expectedFeatures: map[string]bool{CoreDNS: true},
}, },
{ // just StoreCertsInSecrets flags { // just StoreCertsInSecrets flags
inputFeatures: map[string]bool{"StoreCertsInSecrets": true}, inputFeatures: map[string]bool{StoreCertsInSecrets: true},
expectedFeatures: map[string]bool{"StoreCertsInSecrets": true, "SelfHosting": true}, expectedFeatures: map[string]bool{StoreCertsInSecrets: true, SelfHosting: true},
}, },
{ // just HighAvailability flags { // just HighAvailability flags
inputFeatures: map[string]bool{"HighAvailability": true}, inputFeatures: map[string]bool{HighAvailability: true},
expectedFeatures: map[string]bool{"HighAvailability": true, "StoreCertsInSecrets": true, "SelfHosting": true}, expectedFeatures: map[string]bool{HighAvailability: true, StoreCertsInSecrets: true, SelfHosting: true},
}, },
} }

View File

@ -200,7 +200,7 @@ func createCoreDNSAddon(deploymentBytes, serviceBytes, configBytes []byte, clien
coreDNSServiceAccount := &v1.ServiceAccount{} coreDNSServiceAccount := &v1.ServiceAccount{}
if err := kuberuntime.DecodeInto(legacyscheme.Codecs.UniversalDecoder(), []byte(CoreDNSServiceAccount), coreDNSServiceAccount); err != nil { if err := kuberuntime.DecodeInto(legacyscheme.Codecs.UniversalDecoder(), []byte(CoreDNSServiceAccount), coreDNSServiceAccount); err != nil {
return fmt.Errorf("unable to decode CoreDNS configmap %v", err) return fmt.Errorf("unable to decode CoreDNS serviceaccount %v", err)
} }
// Create the ConfigMap for CoreDNS or update it in case it already exists // Create the ConfigMap for CoreDNS or update it in case it already exists