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 blob csi driver into 0502preview #19095

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 @@ -6045,6 +6045,10 @@
"snapshotController": {
"$ref": "#/definitions/ManagedClusterStorageProfileSnapshotController",
"description": "Snapshot Controller settings for the storage profile."
},
"blobCSIDriver": {
"$ref": "#/definitions/ManagedClusterStorageProfileBlobCSIDriver",
"description": "AzureBlob CSI Driver settings for the storage profile."
}
},
"description": "Storage profile for the container service cluster."
Expand Down Expand Up @@ -6131,6 +6135,16 @@
},
"description": "Snapshot Controller settings for the storage profile."
},
"ManagedClusterStorageProfileBlobCSIDriver": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to enable AzureBlob CSI Driver. The default value is false."
}
},
"description": "AzureBlob CSI Driver settings for the storage profile."
},
"CreationData": {
"description": "Data used when creating a target resource from a source resource.",
"type": "object",
Expand Down