You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is confusing when trying to use the install guide to support the AL2023 EKS Optimized AMIs that default the Metadata hop limit to 1, causing this addon to get stuck in a CrashLoopBackOff on AL2023 Managed Node Group because it is failing to query the cluster VPC. Instead of using a Managed Node Group with custom LT, I'd rather configure the AWS LBC so it isn't dependent on the EC2 Metadata.
The controller command line flags references aws-region and aws-vpc-id. The actual Helm install options are region and vpcId for example. This doesn't cause the Helm install command to fail, but the expected values aren't set.
Steps to reproduce
Installed the AWS LBC with Helm using the following command based on the AWS Load Balancer Controller site documents: helm install aws-load-balancer-controller eks/aws-load-balancer-controller -n kube-system --set clusterName=<cluster-name> --set serviceAccount.create=false --set serviceAccount.name=aws-load-balancer-controller --set aws-region=<region> --set aws-vpc-id=<vpcId>
Correct Helm install syntax to set the VPC ID and Region are the following using the Configuration options in the separate Helm chart GitHub project. So the above command should be: helm install aws-load-balancer-controller eks/aws-load-balancer-controller -n kube-system --set clusterName=<cluster-name> --set serviceAccount.create=false --set serviceAccount.name=aws-load-balancer-controller --set region=<region> --set vpcId=<vpcId>
This works, but is not referenced at all in the installation or configuration documentation.
It's confusing when the installation documentation doesn't reflect the actual Helm install Controller configuration options when Helm is the first recommended option to use to install this addon.
Environment
AWS Load Balancer controller version latest
Kubernetes version 1.31
Using EKS (yes/no), if so version? yes, 1.31
Additional Context:
The text was updated successfully, but these errors were encountered:
Describe the bug
Installation documentation doesn't reflect, or reference, the supported AWS LBC Helm install configuration options. There is the Controller command line flags section in the Controller configuration options page; but these don't match the supported Helm install options.
This is confusing when trying to use the install guide to support the AL2023 EKS Optimized AMIs that default the Metadata hop limit to 1, causing this addon to get stuck in a
CrashLoopBackOff
on AL2023 Managed Node Group because it is failing to query the cluster VPC. Instead of using a Managed Node Group with custom LT, I'd rather configure the AWS LBC so it isn't dependent on the EC2 Metadata.The controller command line flags references
aws-region
andaws-vpc-id
. The actual Helm install options areregion
andvpcId
for example. This doesn't cause the Helm install command to fail, but the expected values aren't set.Steps to reproduce
Installed the AWS LBC with Helm using the following command based on the
AWS Load Balancer Controller
site documents:helm install aws-load-balancer-controller eks/aws-load-balancer-controller -n kube-system --set clusterName=<cluster-name> --set serviceAccount.create=false --set serviceAccount.name=aws-load-balancer-controller --set aws-region=<region> --set aws-vpc-id=<vpcId>
Correct Helm install syntax to set the VPC ID and Region are the following using the Configuration options in the separate Helm chart GitHub project. So the above command should be:
helm install aws-load-balancer-controller eks/aws-load-balancer-controller -n kube-system --set clusterName=<cluster-name> --set serviceAccount.create=false --set serviceAccount.name=aws-load-balancer-controller --set region=<region> --set vpcId=<vpcId>
This works, but is not referenced at all in the installation or configuration documentation.
Expected outcome
AWS LBC Helm install configuration options should accurately reflect the Helm install configuration options. Update Controller command line flags to also reflect the Helm install configuration options.
It's confusing when the installation documentation doesn't reflect the actual Helm install Controller configuration options when Helm is the first recommended option to use to install this addon.
Environment
latest
1.31
1.31
Additional Context:
The text was updated successfully, but these errors were encountered: