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

Add AgentPoolUpgradeSettings.nodeSoakDurationInMinutes #26046

Merged
Changes from all commits
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 @@ -4004,6 +4004,14 @@
"minimum": 1,
"title": "The drain timeout for a node",
"description": "The amount of time (in minutes) to wait on eviction of pods and graceful termination per node. This eviction wait time honors waiting on pod disruption budgets. If this time is exceeded, the upgrade fails. If not specified, the default is 30 minutes."
},
"nodeSoakDurationInMinutes": {
"type": "integer",
"format": "int32",
"maximum": 30,
"minimum": 0,
"title": "The soak duration for a node",
"description": "The amount of time (in minutes) to wait after draining a node and before reimaging it and moving on to next node. If not specified, the default is 0 minutes."
}
},
"description": "Settings for upgrading an agentpool"
Expand Down