Skip to content

Commit

Permalink
Merge pull request #5273 from Patryk-Stefanski/set_diskStorageAccount…
Browse files Browse the repository at this point in the history
…Type_in_aks_e2e

NO-JIRA: set diskStorageAccountType in aks e2e
  • Loading branch information
openshift-merge-bot[bot] authored Dec 13, 2024
2 parents 2213200 + cd87174 commit 0363955
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ spec:
type: ImageID
machineIdentityID: fakeMachineIdentityID
osDisk:
diskStorageAccountType: Premium_LRS
sizeGiB: 120
subnetID: fakeSubnetID
vmSize: Standard_D4s_v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ spec:
type: ImageID
machineIdentityID: fakeMachineIdentityID
osDisk:
diskStorageAccountType: Premium_LRS
sizeGiB: 120
subnetID: fakeSubnetID
vmSize: Standard_D4s_v3
Expand Down Expand Up @@ -193,6 +194,7 @@ spec:
type: ImageID
machineIdentityID: fakeMachineIdentityID
osDisk:
diskStorageAccountType: Premium_LRS
sizeGiB: 120
subnetID: fakeSubnetID
vmSize: Standard_D4s_v3
Expand Down
3 changes: 2 additions & 1 deletion cmd/nodepool/azure/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ type RawAzurePlatformCreateOptions struct {
func DefaultOptions() *RawAzurePlatformCreateOptions {
return &RawAzurePlatformCreateOptions{
AzurePlatformCreateOptions: &AzurePlatformCreateOptions{
DiskSize: 120,
DiskSize: 120,
DiskStorageAccountType: string(hyperv1.DiskStorageAccountTypesPremiumLRS),
},
AzureMarketPlaceImageInfo: &AzureMarketPlaceImageInfo{},
}
Expand Down

0 comments on commit 0363955

Please sign in to comment.