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

[AKS] add kubeletDiskType for agent pool api #12120

Merged
Show file tree
Hide file tree
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 @@ -47,6 +47,7 @@
"maxPods": 110,
"osType": "Linux",
"osDiskType": "Ephemeral",
"kubeletDiskType": "OS",
"osDiskSizeGB": 64
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1898,6 +1898,10 @@
"$ref": "#/definitions/OSDiskType",
"description": "OS disk type to be used for machines in a given agent pool. Allowed values are 'Ephemeral' and 'Managed'. Defaults to 'Managed'. May not be changed after creation."
},
"kubeletDiskType": {
"$ref": "#/definitions/KubeletDiskType",
"description": "KubeletDiskType determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Currently allows one value, OS, resulting in Kubelet using the OS disk for data."
},
"vnetSubnetID": {
"$ref": "#/definitions/ContainerServiceVnetSubnetID",
"description": "VNet SubnetID specifies the VNet's subnet identifier for nodes and maybe pods"
Expand Down Expand Up @@ -3429,6 +3433,17 @@
},
"description": "OSDiskType represents the type of an OS disk on an agent pool."
},
"KubeletDiskType": {
"type": "string",
"enum": [
"OS"
],
"x-ms-enum": {
"name": "KubeletDiskType",
"modelAsString": true
},
"description": "KubeletDiskType determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Currently allows one value, OS, resulting in Kubelet using the OS disk for data."
},
"KubeletConfig": {
"description": "Kubelet configurations of agent nodes.",
"type": "object",
Expand Down