Mirantis / launchpad

Other
28 stars 45 forks source link

Error syncing load balancer: failed to ensure load balancer: Multiple untagged security groups found #62

Open Vad1mo opened 3 years ago

Vad1mo commented 3 years ago

After installing MKE with the provided TF example, I created a nginx Ingress controller with Service Type Load balancer:

In AWS Console I saw the CLB was created but in K8s it failed with this event:

Error syncing load balancer: failed to ensure load balancer: Multiple untagged security groups found for instance i-0e16ead5ecfcda342; ensure the k8s security group is tagged

The resolution was to add

  tags = map(
    "${var.kube_cluster_tag}", "shared"
  )

To the Security Group and VPC Tags.