Skip to content

Commit 31c6670

Browse files
authored
Merge pull request #445 from CecileRobertMichon/change-default-OS-disk
fix: change example OS disk size to 128GB
2 parents 905737c + 0dfe4eb commit 31c6670

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/cluster-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ spec:
109109
vmSize: ${AZURE_CONTROL_PLANE_MACHINE_TYPE}
110110
osDisk:
111111
osType: "Linux"
112-
diskSizeGB: 30
112+
diskSizeGB: 128
113113
managedDisk:
114114
storageAccountType: "Premium_LRS"
115115
sshPublicKey: ${AZURE_SSH_PUBLIC_KEY}

test/e2e/resource_generators.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ func (n *NodeGenerator) GenerateNode(creds auth.Creds, clusterName string) frame
151151
},
152152
},
153153
OSDisk: infrav1.OSDisk{
154-
DiskSizeGB: 30,
154+
DiskSizeGB: 128,
155155
OSType: "Linux",
156156
ManagedDisk: infrav1.ManagedDisk{
157157
StorageAccountType: "Premium_LRS",

0 commit comments

Comments
 (0)