Skip to content
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

Bring Node os upgrade channel up GA from preview except security patch #24487

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4557,6 +4557,34 @@
},
"title": "The upgrade channel for auto upgrade. The default is 'none'.",
"description": "For more information see [setting the AKS cluster auto-upgrade channel](https://docs.microsoft.com/azure/aks/upgrade-cluster#set-auto-upgrade-channel)."
},
"nodeOSUpgradeChannel": {
"type": "string",
"enum": [
"Unmanaged",
"None",
"NodeImage"
],
"x-ms-enum": {
"name": "nodeOSUpgradeChannel",
"modelAsString": true,
"values": [
{
"value": "None",
"description": "No attempt to update your machines OS will be made either by OS or by rolling VHDs. This means you are responsible for your security updates"
},
{
"value": "Unmanaged",
"description": "OS updates will be applied automatically through the OS built-in patching infrastructure. Newly scaled in machines will be unpatched initially and will be patched at some point by the OS's infrastructure. Behavior of this option depends on the OS in question. Ubuntu and Mariner apply security patches through unattended upgrade roughly once a day around 06:00 UTC. Windows does not apply security patches automatically and so for them this option is equivalent to None till further notice"
},
{
"value": "NodeImage",
"description": "AKS will update the nodes with a newly patched VHD containing security fixes and bugfixes on a weekly cadence. With the VHD update machines will be rolling reimaged to that VHD following maintenance windows and surge settings. No extra VHD cost is incurred when choosing this option as AKS hosts the images."
}
]
},
"title": "Node OS Upgrade Channel",
"description": "Manner in which the OS on your nodes is updated. The default is NodeImage."
}
},
"description": "Auto upgrade profile for a managed cluster."
Expand Down