mirror of https://github.com/kubernetes/kops.git
Merge pull request #1125 from DualSpark/fix-log-about-issue-241
Removing workaround for #241
This commit is contained in:
commit
dc63402649
|
|
@ -213,13 +213,6 @@ func (_ *AutoscalingGroup) RenderAWS(t *awsup.AWSAPITarget, a, e, changes *Autos
|
||||||
changes.Subnets = nil
|
changes.Subnets = nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Temporary workaround for user-added tags, until we have #241
|
|
||||||
// TODO: Remove once we have #241
|
|
||||||
if changes.Tags != nil {
|
|
||||||
glog.Warning("Ignoring tag changes until we have #241: %v", changes.Tags)
|
|
||||||
changes.Tags = nil
|
|
||||||
}
|
|
||||||
|
|
||||||
empty := &AutoscalingGroup{}
|
empty := &AutoscalingGroup{}
|
||||||
if !reflect.DeepEqual(empty, changes) {
|
if !reflect.DeepEqual(empty, changes) {
|
||||||
glog.Warningf("cannot apply changes to AutoScalingGroup: %v", changes)
|
glog.Warningf("cannot apply changes to AutoScalingGroup: %v", changes)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue