mirror of https://github.com/kubernetes/kops.git
fix: do not log unmatched groups as warnings
This commit is contained in:
parent
2702b12f2b
commit
9ccbe5b39a
|
|
@ -106,7 +106,7 @@ func GetCloudGroups(svc Service, cluster *kops.Cluster, instancegroups []*kops.I
|
||||||
|
|
||||||
if instancegroup == nil {
|
if instancegroup == nil {
|
||||||
if warnUnmatched {
|
if warnUnmatched {
|
||||||
glog.Warningf("Found group with no corresponding instance group %q", group.Name())
|
glog.V(2).Infof("Found group with no corresponding instance group %q", group.Name())
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue