-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added configuration value enableWindowsIpam for Vpc-cni add on #935
Added configuration value enableWindowsIpam for Vpc-cni add on #935
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@renukakrishnan Thankyou for the PR.Please update the docs too.
lib/addons/vpc-cni/index.ts
Outdated
@@ -436,7 +443,8 @@ function populateVpcCniConfigurationValues(props?: VpcCniAddOnProps): Values { | |||
WARM_IP_TARGET: props?.warmIpTarget, | |||
WARM_PREFIX_TARGET: props?.warmPrefixTarget, | |||
}, | |||
enableNetworkPolicy: JSON.stringify(props?.enableNetworkPolicy) | |||
enableNetworkPolicy: JSON.stringify(props?.enableNetworkPolicy), | |||
enableWindowsIpam:JSON.stringify(props?.enableWindowsIpam) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Space is missing after :
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@elamaran11 Updated the docs and added space.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thankyou for the contribution @renukakrishnan !
@shapirov103 LGTM. Feel free to merge this. The markdown failure is from Kubecost. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, great work!
Issue #, if available:
Description of changes:
Added and exposed the configuration for "enableWindowsIpam" for the vpc-cni add on. This will allow to turn on the configuration value for Windows EKS clusters while using the Windows patterns.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.