Skip to content

Commit

Permalink
Align azure_lite root volume to be the same as other paid plan runtim…
Browse files Browse the repository at this point in the history
…es (#1589)
  • Loading branch information
ebensom authored Dec 18, 2024
1 parent 891d8fc commit 260fe24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions internal/provider/azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ func (p *AzureLiteInputProvider) Provide() Values {
DefaultMachineType: machineType,
Region: region,
Purpose: p.Purpose,
DiskType: "Standard_LRS",
VolumeSizeGb: 50,
DiskType: "StandardSSD_LRS",
VolumeSizeGb: 80,
}
}

Expand Down
4 changes: 2 additions & 2 deletions internal/provider/azure_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ func (p *AzureLiteInput) Defaults() *gqlschema.ClusterConfigInput {
}
return &gqlschema.ClusterConfigInput{
GardenerConfig: &gqlschema.GardenerConfigInput{
DiskType: ptr.String("Standard_LRS"),
VolumeSizeGb: ptr.Integer(50),
DiskType: ptr.String("StandardSSD_LRS"),
VolumeSizeGb: ptr.Integer(80),
MachineType: machineType,
Region: DefaultAzureRegion,
Provider: "azure",
Expand Down
8 changes: 4 additions & 4 deletions internal/provider/azure_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ func TestAzureLiteDefaults(t *testing.T) {
DefaultMachineType: "Standard_D4s_v5",
Region: "eastus",
Purpose: "evaluation",
DiskType: "Standard_LRS",
VolumeSizeGb: 50,
DiskType: "StandardSSD_LRS",
VolumeSizeGb: 80,
}, values)
}

Expand Down Expand Up @@ -203,7 +203,7 @@ func TestAzureLiteSpecific(t *testing.T) {
DefaultMachineType: "Standard_D4s_v5",
Region: "uksouth",
Purpose: "evaluation",
DiskType: "Standard_LRS",
VolumeSizeGb: 50,
DiskType: "StandardSSD_LRS",
VolumeSizeGb: 80,
}, values)
}

0 comments on commit 260fe24

Please sign in to comment.