Skip to content

Commit

Permalink
feat: add ManagedCluster StorageProfile in 0301 (Azure#18594)
Browse files Browse the repository at this point in the history
Signed-off-by: Ji An Liu <jiliu8@microsoft.com>
  • Loading branch information
ZeroMagic authored and FumingZhang committed Apr 14, 2022
1 parent a037427 commit fd88ffc
Showing 1 changed file with 48 additions and 0 deletions.
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."
}
},
"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

0 comments on commit fd88ffc

Please sign in to comment.