mirror of https://github.com/kubernetes/kops.git
Merge pull request #12079 from justinsb/gce_targetpool_lifecycle_is_internal
GCE: TargetPool should ignore Lifecycle field
This commit is contained in:
commit
638b79f301
|
@ -55,6 +55,9 @@ func (e *TargetPool) Find(c *fi.Context) (*TargetPool, error) {
|
|||
actual := &TargetPool{}
|
||||
actual.Name = fi.String(r.Name)
|
||||
|
||||
// Avoid spurious changes
|
||||
actual.Lifecycle = e.Lifecycle
|
||||
|
||||
return actual, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue