Skip to content

Commit 98fb71e

Browse files
author
Kubernetes Submit Queue
authored
Merge pull request kubernetes#55931 from andyzhangx/grs-ragrs
Automatic merge from submit-queue (batch tested with PRs 55963, 55790, 55670, 55931). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. add GRS, RAGRS storage account type support for azure disk **What this PR does / why we need it**: add Standard_GRS, Standard_RAGRS storage account type support for azure disk, and Standard_ZRS, Premium_GRS are not supported for azure disk now **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes kubernetes#55774 **Special notes for your reviewer**: **Release note**: ``` add Standard_GRS, Standard_RAGRS support for azure disk ``` /sig azure @rootfs @brendanburns
2 parents ca37dd8 + d7160ae commit 98fb71e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/volume/azure_dd/azure_common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var (
5858
string(api.AzureDedicatedBlobDisk),
5959
string(api.AzureManagedDisk))
6060

61-
supportedStorageAccountTypes = sets.NewString("Premium_LRS", "Standard_LRS")
61+
supportedStorageAccountTypes = sets.NewString("Premium_LRS", "Standard_LRS", "Standard_GRS", "Standard_RAGRS")
6262
)
6363

6464
func getPath(uid types.UID, volName string, host volume.VolumeHost) string {

0 commit comments

Comments
 (0)