File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ Terraform module for KVM/Libvirt Virtual Machine. This module will create a KVM
26
26
|vm_count|Number of VMs| 1
27
27
|vm_hostname_prefix|VM hostname prefix|vm
28
28
|memory|RAM in MB|1024
29
+ |hugepages|Use Hugepages|false
29
30
|vcpu|Number of vCPUs|1
30
31
|pool|Storage pool name|default
31
32
|system_volume|System Volume size (GB)|10
@@ -65,6 +66,7 @@ module "nodes" {
65
66
vm_hostname_prefix = "server"
66
67
vm_count = 3
67
68
memory = "2048"
69
+ hugepages = false
68
70
vcpu = 1
69
71
pool = "terra_pool"
70
72
system_volume = 20
@@ -87,7 +89,7 @@ output "ip_addresses" {
87
89
}
88
90
```
89
91
90
- Static IP settings:
92
+ Static IP settings and Hugepages :
91
93
92
94
``` hcl
93
95
terraform {
@@ -110,6 +112,7 @@ module "nodes" {
110
112
vm_hostname_prefix = "server"
111
113
vm_count = 3
112
114
memory = "2048"
115
+ hugepages = true
113
116
vcpu = 1
114
117
pool = "terra_pool"
115
118
system_volume = 20
You can’t perform that action at this time.
0 commit comments