mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-10-21 22:49:31 +00:00
Add aws cloud config: [global] disableSecurityGroupIngress = true The aws provider creates an inbound rule per load balancer on the node security group. However, this can quickly run into the AWS security group rule limit of 50. This disables the automatic ingress creation. It requires that the user has setup a rule that allows inbound traffic on kubelet ports from the local VPC subnet (so load balancers can access it). E.g. `10.82.0.0/16 30000-32000`. Limits: http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_Limits.html#vpc-limits-security-groups Authors: @jsravn, @balooo