aws / containers-roadmap

This is the public roadmap for AWS container services (ECS, ECR, Fargate, and EKS).
https://aws.amazon.com/about-aws/whats-new/containers/
Other
5.21k stars 317 forks source link

[EKS] [request]: Update EKS Windows support doc to reflect VPC-CNI addon configuration #2341

Open jzhn opened 5 months ago

jzhn commented 5 months ago

Community Note

Tell us about your request What do you want us to build?

The EKS document for enabling Windows support, https://docs.aws.amazon.com/eks/latest/userguide/windows-support.html#enable-windows-support, mentioned that to enable Windows IPAM support, one should

Create a file named vpc-resource-controller-configmap.yaml with the following contents.

apiVersion: v1
kind: ConfigMap
metadata:
name: amazon-vpc-cni
namespace: kube-system
data:
enable-windows-ipam: "true"

Apply the ConfigMap to your cluster.

kubectl apply -f vpc-resource-controller-configmap.yaml

Since the launch of EKS addon configuration, this configmap is now managed by VPC-CNI addon. Manual changes to it, as suggested by the doc, will be overwritten by EKS addon operator, causing unexpected downtime to environments that run Windows workloads.

Which service(s) is this request for? EKS (EKS addon)

Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard? Please update the doc to mention that the enable-windows-ipam flag should now be set via VPC-CNI addon configuration

{"enableWindowsIpam": "true"}

Are you currently working around this issue? How are you currently solving this problem? Added above addon configuration to VPC-CNI.

Additional context Anything else we should know? N/A

Attachments If you think you might have additional information that you'd like to include via an attachment, please do - we'll take a look. (Remember to remove any personally-identifiable information.)

geoffcline commented 5 months ago

Thanks for the feedback @jzhn ! This will be fixed in the EKS docs in the next week.

pmartyniuk commented 3 months ago

Thanks for the tip, I was looking for a long time how to set it up. This is not documented anywhere, shame on AWS!