containers-roadmap
containers-roadmap copied to clipboard
[EKS] [request]: Update EKS Windows support doc to reflect VPC-CNI addon configuration
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
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.)
Thanks for the feedback @jzhn ! This will be fixed in the EKS docs in the next week.
Thanks for the tip, I was looking for a long time how to set it up. This is not documented anywhere, shame on AWS!