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

Remove overlay vpa unused properties #25242

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 @@ -8086,69 +8086,10 @@
"type": "boolean",
"description": "Whether to enable VPA. Default value is false.",
"default": false
},
"controlledValues": {
"type": "string",
"enum": [
"RequestsAndLimits",
"RequestsOnly"
],
"x-ms-enum": {
"name": "ControlledValues",
"modelAsString": true,
"values": [
{
"value": "RequestsAndLimits",
"description": "Autoscaler will control resource requests and limits."
},
{
"value": "RequestsOnly",
"description": "Autoscaler will control resource requests only."
}
]
},
"default": "RequestsAndLimits",
"description": "Controls which resource value autoscaler will change. Default value is RequestsAndLimits."
},
"updateMode": {
"type": "string",
"enum": [
"Off",
"Initial",
"Recreate",
"Auto"
],
"x-ms-enum": {
"name": "UpdateMode",
"modelAsString": true,
"values": [
{
"value": "Off",
"description": "Autoscaler never changes pod resources but provides recommendations."
},
{
"value": "Initial",
"description": "Autoscaler only assigns resources on pod creation and doesn't change them during the lifetime of the pod."
},
{
"value": "Recreate",
"description": "Autoscaler assigns resources on pod creation and updates pods that need further scaling during their lifetime by deleting and recreating."
},
{
"value": "Auto",
"description": "Autoscaler chooses the update mode. Autoscaler currently does the same as Recreate. In the future, it may take advantage of restart-free mechanisms once they are available."
}
]
},
"default": "Off",
"title": "The update mode of the autoscaler.",
"description": "Each update mode level is a superset of the lower levels. Off<Initial<Recreate<=Auto. For example: if UpdateMode is Initial, it means VPA sets the recommended resources in the VerticalPodAutoscaler Custom Resource (from UpdateMode Off) and also assigns resources on pod creation (from Initial). The default value is Off."
}
},
"required": [
"enabled",
"updateMode",
"controlledValues"
"enabled"
]
},
"ManagedClusterAzureMonitorProfile": {
Expand Down