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

feat: add ManagedCluster StorageProfile in 0301 #18594

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 @@ -5515,6 +5515,24 @@
},
"description": "Security profile for the container service cluster."
},
"ManagedClusterStorageProfile": {
"type": "object",
"properties": {
"diskCSIDriver": {
"$ref": "#/definitions/ManagedClusterStorageProfileDiskCSIDriver",
"description": "AzureDisk CSI Driver settings for the storage profile."
},
"fileCSIDriver": {
"$ref": "#/definitions/ManagedClusterStorageProfileFileCSIDriver",
"description": "AzureFile CSI Driver settings for the storage profile."
},
"snapshotController": {
"$ref": "#/definitions/ManagedClusterStorageProfileSnapshotController",
"description": "Snapshot Controller settings for the storage profile."
}
},
"description": "Storage profile for the container service cluster."
},
"ManagedClusterSecurityProfileAzureDefender": {
"type": "object",
"properties": {
Expand All @@ -5529,6 +5547,36 @@
},
"description": "Azure Defender settings for the security profile."
},
"ManagedClusterStorageProfileDiskCSIDriver": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to enable AzureDisk CSI Driver. The default value is true."
}
ZeroMagic marked this conversation as resolved.
Show resolved Hide resolved
},
"description": "AzureDisk CSI Driver settings for the storage profile."
},
"ManagedClusterStorageProfileFileCSIDriver": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to enable AzureFile CSI Driver. The default value is true."
}
},
"description": "AzureFile CSI Driver settings for the storage profile."
},
"ManagedClusterStorageProfileSnapshotController": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to enable Snapshot Controller. The default value is true."
}
},
"description": "Snapshot Controller settings for the storage profile."
},
"CreationData": {
"description": "Data used when creating a target resource from a source resource.",
"type": "object",
Expand Down