This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow creation of dualstack Windows clusters (#4176)
* feat: allow creation of dualstack Windows clusters * Apply suggestions from code review Co-authored-by: James Sturtevant <jsturtevant@gmail.com> * Disable IPv6-only on Windows * fix: restart hns for Windows dual-stack Co-authored-by: Varun Venkatesh <vavenk@microsoft.com> Co-authored-by: James Sturtevant <jsturtevant@gmail.com>
- Loading branch information
1 parent
30bb338
commit 9047a45
Showing
5 changed files
with
118 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"apiVersion": "vlabs", | ||
"properties": { | ||
"featureFlags": { | ||
"enableIPv6DualStack": true | ||
}, | ||
"orchestratorProfile": { | ||
"orchestratorRelease": "1.19", | ||
"kubernetesConfig": { | ||
"apiServerConfig": { | ||
"--feature-gates": "IPv6DualStack=true" | ||
}, | ||
"kubeletConfig": { | ||
"--feature-gates": "IPv6DualStack=true" | ||
}, | ||
"controllerManagerConfig": { | ||
"--feature-gates": "IPv6DualStack=true" | ||
}, | ||
"kubeProxyMode": "ipvs", | ||
"networkPlugin": "azure", | ||
"networkMode": "bridge", | ||
"networkPolicy": "", | ||
"useManagedIdentity": false | ||
} | ||
}, | ||
"masterProfile": { | ||
"count": 1, | ||
"dnsPrefix": "", | ||
"vmSize": "Standard_D2_v3" | ||
}, | ||
"agentPoolProfiles": [ | ||
{ | ||
"name": "windowspool2", | ||
"count": 1, | ||
"vmSize": "Standard_D2_v3", | ||
"availabilityProfile": "VirtualMachineScaleSets", | ||
"osType": "Windows", | ||
"osDiskSizeGB": 128 | ||
} | ||
], | ||
"windowsProfile": { | ||
"windowsPublisher": "MicrosoftWindowsServer", | ||
"windowsOffer": "WindowsServer", | ||
"windowsSku": "Datacenter-Core-2004-with-Containers-smalldisk", | ||
"imageVersion": "latest", | ||
"adminUsername": "azureuser", | ||
"adminPassword": "replacepassword1234$" | ||
}, | ||
"linuxProfile": { | ||
"adminUsername": "azureuser", | ||
"ssh": { | ||
"publicKeys": [ | ||
{ | ||
"keyData": "" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters