Skip to content

Commit

Permalink
Merge pull request #832 from vrothberg/machine-vm-size
Browse files Browse the repository at this point in the history
increase default machine vm size to 100GiB
  • Loading branch information
openshift-merge-robot authored Nov 19, 2021
2 parents 77aa031 + 4abad2d commit 05fd779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/config/config_local_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ var _ = Describe("Config Local", func() {
// Given
config, err := NewConfig("")
gomega.Expect(err).To(gomega.BeNil())
gomega.Expect(config.Machine.DiskSize).To(gomega.Equal(uint64(10)))
gomega.Expect(config.Machine.DiskSize).To(gomega.Equal(uint64(100)))
// When
config2, err := NewConfig("testdata/containers_default.conf")
// Then
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func defaultSecretConfig() SecretConfig {
func defaultMachineConfig() MachineConfig {
return MachineConfig{
CPUs: 1,
DiskSize: 10,
DiskSize: 100,
Image: "testing",
Memory: 2048,
}
Expand Down

0 comments on commit 05fd779

Please sign in to comment.