mirror of https://github.com/kubernetes/kops.git
Don't tag shared instances at all
We don't need to (and we can add it later if we do) Also clean up the Name tag
This commit is contained in:
parent
02ab1f90be
commit
cd6808d48e
|
|
@ -270,7 +270,7 @@ func (b *NetworkModelBuilder) Build(c *fi.ModelBuilderContext) error {
|
|||
Lifecycle: b.Lifecycle,
|
||||
ID: s(b.Cluster.Spec.Subnets[i].Egress),
|
||||
Shared: fi.Bool(true),
|
||||
Tags: b.CloudTags(zone+"."+b.ClusterName(), true),
|
||||
Tags: nil, // We don't need to add tags here
|
||||
}
|
||||
|
||||
c.AddTask(in)
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@ func (e *Instance) Find(c *fi.Context) (*Instance, error) {
|
|||
actual.IAMInstanceProfile = &IAMInstanceProfile{Name: nameFromIAMARN(i.IamInstanceProfile.Arn)}
|
||||
}
|
||||
|
||||
actual.Tags = mapEC2TagsToMap(i.Tags)
|
||||
actual.Tags = intersectTags(i.Tags, e.Tags)
|
||||
|
||||
actual.Lifecycle = e.Lifecycle
|
||||
actual.Shared = e.Shared
|
||||
|
|
@ -195,10 +195,6 @@ func nameFromIAMARN(arn *string) *string {
|
|||
}
|
||||
|
||||
func (e *Instance) Run(c *fi.Context) error {
|
||||
cloud := c.Cloud.(awsup.AWSCloud)
|
||||
|
||||
cloud.AddTags(e.Name, e.Tags)
|
||||
|
||||
return fi.DefaultDeltaRunMethod(e, c)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue