Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1868773: Libvirt: Bump bootstrap memory to 4G #4080

Merged
merged 2 commits into from Aug 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/data/libvirt/variables-libvirt.tf
Expand Up @@ -47,7 +47,7 @@ variable "libvirt_master_vcpu" {
variable "libvirt_bootstrap_memory" {
type = number
description = "RAM in MiB allocated to the bootstrap node"
default = 2048
default = 4096
}

# Currently RHCOS maintain its default 16G size if that
Expand Down
4 changes: 0 additions & 4 deletions pkg/tfvars/libvirt/libvirt.go
Expand Up @@ -72,10 +72,6 @@ func TFVars(masterConfig *v1beta1.LibvirtMachineProviderConfig, osImage string,
cfg.MasterDiskSize = masterConfig.Volume.VolumeSize.String()
}

if architecture == types.ArchitecturePPC64LE {
cfg.BootstrapMemory = 5120
}

return json.MarshalIndent(cfg, "", " ")
}

Expand Down