We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b37644c + 70806fc commit 4bfe8a5Copy full SHA for 4bfe8a5
nodeup/pkg/model/networking/amazon-vpc-routed-eni.go
@@ -68,11 +68,11 @@ ManageForeignRoutingPolicyRules=no
68
})
69
}
70
71
- // Running Amazon VPC CNI on Ubuntu 22.04+ requires
+ // Running Amazon VPC CNI on Ubuntu 22.04+ and AL2023 requires
72
// setting MACAddressPolicy to `none` (ref: https://github.com/aws/amazon-vpc-cni-k8s/issues/2103
73
// & https://github.com/aws/amazon-vpc-cni-k8s/issues/2839
74
// & https://github.com/kubernetes/kops/issues/16255)
75
- if b.Distribution.IsUbuntu() && b.Distribution.Version() >= 22.04 {
+ if b.Distribution.IsUbuntu() && b.Distribution.Version() >= 22.04 || b.Distribution == distributions.DistributionAmazonLinux2023 {
76
contents := `
77
[Match]
78
OriginalName=*
0 commit comments