Revert "Apply cloud labels into ELB"

This reverts commit b52c945f9f.
This commit is contained in:
Rohith 2018-09-25 13:53:38 +01:00
parent 5ce8301e90
commit 2fc634c556
2 changed files with 0 additions and 5 deletions

View File

@ -228,8 +228,6 @@ resource "aws_elb" "api-complex-example-com" {
tags = {
KubernetesCluster = "complex.example.com"
Name = "api.complex.example.com"
Owner = "John Doe"
"foo/bar" = "fib+baz"
}
}

View File

@ -80,9 +80,6 @@ func BuildCloud(cluster *kops.Cluster) (fi.Cloud, error) {
}
cloudTags := map[string]string{awsup.TagClusterName: cluster.ObjectMeta.Name}
for k, v := range cluster.Spec.CloudLabels {
cloudTags[k] = v
}
awsCloud, err := awsup.NewAWSCloud(region, cloudTags)
if err != nil {