mirror of https://github.com/kubernetes/kops.git
Merge pull request #6025 from spotinst/fix-warn-unmatched
Spotinst: Do not log unmatched groups as warning messages
This commit is contained in:
commit
73a24b432a
|
|
@ -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