Skip to content

Commit

Permalink
Merge pull request kubernetes#96907 from pacoxu/patch-1
Browse files Browse the repository at this point in the history
coredns dep.Severity is newdefault, not newDefault
  • Loading branch information
k8s-ci-robot authored Dec 1, 2020
2 parents e0c587b + 4525f3f commit 98bc258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/kubeadm/app/phases/addons/dns/dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ func isCoreDNSConfigMapMigrationRequired(corefile, currentInstalledCoreDNSVersio

// Check if there are any plugins/options which needs to be removed or is a new default
for _, dep := range deprecated {
if dep.Severity == "removed" || dep.Severity == "newDefault" {
if dep.Severity == "removed" || dep.Severity == "newdefault" {
isMigrationRequired = true
}
}
Expand Down

0 comments on commit 98bc258

Please sign in to comment.