Merge pull request #89250 from andyzhangx/disk-version

feat: change azure disk api-version
This commit is contained in:
Kubernetes Prow Robot 2020-03-21 02:56:57 -07:00 committed by GitHub
commit 173b5ee6f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ import (
)
const (
defaultStorageAccountType = compute.StandardLRS
defaultStorageAccountType = compute.StandardSSDLRS
defaultAzureDiskKind = v1.AzureManagedDisk
defaultAzureDataDiskCachingMode = v1.AzureDataDiskCachingReadOnly
)

View File

@ -146,7 +146,7 @@ func TestNormalizeStorageAccountType(t *testing.T) {
}{
{
storageAccountType: "",
expectedAccountType: compute.StandardLRS,
expectedAccountType: compute.StandardSSDLRS,
expectError: false,
},
{

View File

@ -27,7 +27,7 @@ import (
const (
// APIVersion is the API version for compute.
APIVersion = "2019-07-01"
APIVersion = "2019-11-01"
)
// Interface is the client interface for Disks.