Skip to content
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 @@ -5849,6 +5849,24 @@
},
"description": "Azure Defender settings for the security profile."
},
"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."
},
"AzureKeyVaultKms": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -5897,6 +5915,40 @@
},
"description": "Workload Identity settings for the security profile."
},
"ManagedClusterStorageProfileDiskCSIDriver": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to enable AzureDisk CSI Driver. The default value is true."
},
"version": {
"type": "string",
"description": "The version of AzureDisk CSI Driver. The default value is v1."
}
},
"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