Skip to content

Commit

Permalink
F #548: Add method, gateway, dns arguments for nics
Browse files Browse the repository at this point in the history
  • Loading branch information
sk4zuzu committed Jun 7, 2024
1 parent 2c33564 commit 5fa5ea4
Show file tree
Hide file tree
Showing 6 changed files with 156 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/oned.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sed '/DATASTORE_MAD/,+3 d' -i /etc/one/oned.conf
echo 'IM_MAD = [ NAME="dummy", SUNSTONE_NAME="Dummy", EXECUTABLE="one_im_sh", ARGUMENTS="-r 3 -t 15 -w 90 dummy", THREADS=0]' >> /etc/one/monitord.conf
echo 'VM_MAD = [ NAME="dummy", SUNSTONE_NAME="Testing", EXECUTABLE="one_vmm_dummy",TYPE="xml" ]' >> /etc/one/oned.conf
echo 'DATASTORE_MAD = [ EXECUTABLE = "one_datastore", ARGUMENTS = "-t 15 -d dummy,fs,lvm,ceph,dev,iscsi_libvirt,vcenter -s dummy,shared,ssh,ceph,fs_lvm,fs_lvm_ssh,qcow2,vcenter"]' >> /etc/one/oned.conf

echo 'INHERIT_VNET_ATTR = "DNS"' >> /etc/one/oned.conf

# start oned
sudo systemctl start opennebula
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ FEATURES:
* resources/opennebula_virtual_network: allow to modify the user owning the resource (#529)
* resources/opennebula_virtual_machine: add nil checks before type casting (#530)
* resources/opennebula_virtual_router_nic: add floating_only nic argument (#547)
* resources/opennebula_virtual_machine: add method, gateway, dns arguments for nics (#548)

ENHANCEMENTS:

Expand Down
47 changes: 46 additions & 1 deletion opennebula/resource_opennebula_virtual_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ func nicComputedVMFields() map[string]*schema.Schema {
Type: schema.TypeInt,
},
},
"computed_method": {
Type: schema.TypeString,
Computed: true,
},
"computed_gateway": {
Type: schema.TypeString,
Computed: true,
},
"computed_dns": {
Type: schema.TypeString,
Computed: true,
},
}

}
Expand Down Expand Up @@ -876,6 +888,10 @@ func flattenNICComputed(nic shared.NIC, ignoreSGIDs []int) map[string]interface{
sg = append(sg, int(sgInt))
}

method, _ := nic.Get(shared.Method)

Check failure on line 891 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.Method
gateway, _ := nic.Get(shared.Gateway)

Check failure on line 892 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.Gateway
dns, _ := nic.Get(shared.DNS)

Check failure on line 893 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.DNS

return map[string]interface{}{
"nic_id": nicID,
"network": network,
Expand All @@ -885,6 +901,9 @@ func flattenNICComputed(nic shared.NIC, ignoreSGIDs []int) map[string]interface{
"computed_model": model,
"computed_virtio_queues": virtioQueues,
"computed_security_groups": sg,
"computed_method": method,
"computed_gateway": gateway,
"computed_dns": dns,
}
}

Expand All @@ -910,6 +929,15 @@ func flattenVMNICComputed(NICConfig map[string]interface{}, NIC shared.NIC) map[
if len(NICConfig["security_groups"].([]interface{})) > 0 {
NICMap["security_groups"] = NICMap["computed_security_groups"]
}
if len(NICConfig["method"].(string)) > 0 {
NICMap["method"] = NICMap["computed_method"]
}
if len(NICConfig["gateway"].(string)) > 0 {
NICMap["gateway"] = NICMap["computed_gateway"]
}
if len(NICConfig["dns"].(string)) > 0 {
NICMap["dns"] = NICMap["computed_dns"]
}

networkMode, err := NIC.Get(shared.NetworkMode)
if err == nil && networkMode == "auto" {
Expand Down Expand Up @@ -1000,11 +1028,18 @@ func matchNIC(NICConfig map[string]interface{}, NIC shared.NIC) bool {

}

method, _ := NIC.Get(shared.Method)

Check failure on line 1031 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.Method
gateway, _ := NIC.Get(shared.Gateway)

Check failure on line 1032 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.Gateway
dns, _ := NIC.Get(shared.DNS)

Check failure on line 1033 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.DNS

return emptyOrEqual(NICConfig["ip"], ip) &&
emptyOrEqual(NICConfig["mac"], mac) &&
emptyOrEqual(NICConfig["physical_device"], physicalDevice) &&
emptyOrEqual(NICConfig["model"], model) &&
emptyOrEqual(NICConfig["virtio_queues"], virtioQueues) &&
emptyOrEqual(NICConfig["method"], method) &&
emptyOrEqual(NICConfig["gateway"], gateway) &&
emptyOrEqual(NICConfig["dns"], dns) &&
emptyOrEqual(NICConfig["sched_requirements"], schedRequirements) &&
emptyOrEqual(NICConfig["sched_rank"], schedRank) &&
(NICConfig["network_mode_auto"].(bool) == false || networkMode == "auto")
Expand Down Expand Up @@ -1036,11 +1071,18 @@ func matchNICComputed(NICConfig map[string]interface{}, NIC shared.NIC) bool {
}
}

method, _ := NIC.Get(shared.Method)

Check failure on line 1074 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.Method
gateway, _ := NIC.Get(shared.Gateway)

Check failure on line 1075 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.Gateway
dns, _ := NIC.Get(shared.DNS)

Check failure on line 1076 in opennebula/resource_opennebula_virtual_machine.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.DNS

return ip == NICConfig["computed_ip"].(string) &&
mac == NICConfig["computed_mac"].(string) &&
physicalDevice == NICConfig["computed_physical_device"].(string) &&
model == NICConfig["computed_model"].(string) &&
virtioQueues == NICConfig["computed_virtio_queues"].(string)
virtioQueues == NICConfig["computed_virtio_queues"].(string) &&
method == NICConfig["computed_method"].(string) &&
gateway == NICConfig["computed_gateway"].(string) &&
dns == NICConfig["computed_dns"].(string)
}

// flattenVMNIC is similar to flattenNIC but deal with computed_* attributes
Expand Down Expand Up @@ -1900,6 +1942,9 @@ func updateNIC(ctx context.Context, d *schema.ResourceData, meta interface{}) er
"model",
"virtio_queues",
"physical_device",
"method",
"gateway",
"dns",
"network_mode_auto",
"sched_requirements",
"sched_rank",
Expand Down
80 changes: 71 additions & 9 deletions opennebula/resource_opennebula_virtual_machine_nic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,23 @@ func TestAccVirtualMachineNICUpdate(t *testing.T) {
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "name", "test-virtual_machine"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.#", "2"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.0.computed_ip", "172.16.100.131"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.0.computed_gateway", "172.16.100.1"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.0.computed_dns", "8.8.8.8"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.1.computed_ip", "172.16.100.112"),
),
},
{
Config: testAccVirtualMachineTemplateConfigNICExtraUpdate,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "name", "test-virtual_machine"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.#", "2"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.0.computed_ip", "172.16.100.131"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.0.computed_gateway", "172.16.100.254"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.0.computed_dns", "1.1.1.1"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.1.computed_ip", "172.16.100.112"),
resource.TestCheckResourceAttr("opennebula_virtual_machine.test", "nic.1.computed_method", "skip"),
),
},
{
Config: testAccVirtualMachineTemplateConfigMultipleNICs,
Check: resource.ComposeTestCheckFunc(
Expand Down Expand Up @@ -210,6 +224,8 @@ resource "opennebula_virtual_network" "network1" {
group = "oneadmin"
security_groups = [0]
cluster_ids = [0]
gateway = "172.16.100.1"
dns = "8.8.8.8"
}
resource "opennebula_virtual_network" "network2" {
Expand Down Expand Up @@ -321,23 +337,23 @@ var testAccVirtualMachineTemplateConfigNICUpdate = testNICVNetResources + `
permissions = "642"
memory = 128
cpu = 0.1
context = {
NETWORK = "YES"
SET_HOSTNAME = "$NAME"
}
graphics {
type = "VNC"
listen = "0.0.0.0"
keymap = "en-us"
}
os {
arch = "x86_64"
boot = ""
}
tags = {
env = "prod"
customer = "test"
Expand All @@ -352,7 +368,7 @@ var testAccVirtualMachineTemplateConfigNICUpdate = testNICVNetResources + `
network_id = opennebula_virtual_network.network2.id
ip = "172.16.100.111"
}
timeout = 5
}
`
Expand All @@ -365,23 +381,23 @@ var testAccVirtualMachineTemplateConfigNICIPUpdate = testNICVNetResources + `
permissions = "642"
memory = 128
cpu = 0.1
context = {
NETWORK = "YES"
SET_HOSTNAME = "$NAME"
}
graphics {
type = "VNC"
listen = "0.0.0.0"
keymap = "en-us"
}
os {
arch = "x86_64"
boot = ""
}
tags = {
env = "prod"
customer = "test"
Expand All @@ -397,6 +413,52 @@ var testAccVirtualMachineTemplateConfigNICIPUpdate = testNICVNetResources + `
ip = "172.16.100.112"
}
timeout = 5
}
`

var testAccVirtualMachineTemplateConfigNICExtraUpdate = testNICVNetResources + `
resource "opennebula_virtual_machine" "test" {
name = "test-virtual_machine"
group = "oneadmin"
permissions = "642"
memory = 128
cpu = 0.1
context = {
NETWORK = "YES"
SET_HOSTNAME = "$NAME"
}
graphics {
type = "VNC"
listen = "0.0.0.0"
keymap = "en-us"
}
os {
arch = "x86_64"
boot = ""
}
tags = {
env = "prod"
customer = "test"
}
nic {
network_id = opennebula_virtual_network.network1.id
ip = "172.16.100.131"
security_groups = [opennebula_security_group.mysecgroup.id]
gateway = "172.16.100.254"
dns = "1.1.1.1"
}
nic {
network_id = opennebula_virtual_network.network2.id
ip = "172.16.100.112"
method = "skip" # IP is assigned normally in oned, but then one-context ignores it.
}
timeout = 5
}
Expand Down
26 changes: 25 additions & 1 deletion opennebula/shared_schemas.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,18 @@ func nicFields() map[string]*schema.Schema {
Type: schema.TypeInt,
},
},
"method": {
Type: schema.TypeString,
Optional: true,
},
"gateway": {
Type: schema.TypeString,
Optional: true,
},
"dns": {
Type: schema.TypeString,
Optional: true,
},
"network_mode_auto": {
Type: schema.TypeBool,
Optional: true,
Expand Down Expand Up @@ -584,6 +596,12 @@ func makeNICVector(nicConfig map[string]interface{}) *shared.NIC {
case "security_groups":
nicSecGroups := ArrayToString(v.([]interface{}), ",")
nic.Add(shared.SecurityGroups, nicSecGroups)
case "method":
nic.Add(shared.Method, v.(string))

Check failure on line 600 in opennebula/shared_schemas.go

View workflow job for this annotation

GitHub Actions / Go formating

undefined: shared.Method
case "gateway":
nic.Add(shared.Gateway, v.(string))
case "dns":
nic.Add(shared.DNS, v.(string))
case "network_mode_auto":
if v.(bool) {
nic.Add(shared.NetworkMode, "auto")
Expand All @@ -592,7 +610,6 @@ func makeNICVector(nicConfig map[string]interface{}) *shared.NIC {
nic.Add(shared.SchedRequirements, v.(string))
case "sched_rank":
nic.Add(shared.SchedRank, v.(string))

}
}

Expand Down Expand Up @@ -857,6 +874,10 @@ func flattenNIC(nic shared.NIC) map[string]interface{} {
}
}

method, _ := nic.Get(shared.Method)
gateway, _ := nic.Get(shared.Gateway)
dns, _ := nic.Get(shared.DNS)

return map[string]interface{}{
"ip": ip,
"mac": mac,
Expand All @@ -866,6 +887,9 @@ func flattenNIC(nic shared.NIC) map[string]interface{} {
"model": model,
"virtio_queues": virtioQueues,
"security_groups": sg,
"method": method,
"gateway": gateway,
"dns": dns,
"network_mode_auto": networkModeBool,
"sched_requirements": schedReqs,
"sched_rank": schedRank,
Expand Down
12 changes: 12 additions & 0 deletions website/docs/r/virtual_machine.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ resource "opennebula_virtual_machine" "example" {
model = "virtio"
network_id = var.vnetid
security_groups = [opennebula_security_group.example.id]
# NOTE: To make this work properly ensure /etc/one/oned.conf contains: INHERIT_VNET_ATTR="DNS"
dns = "1.1.1.1"
}
vmgroup {
Expand Down Expand Up @@ -153,6 +156,9 @@ A disk update will be triggered in adding or removing a `disk` section, or by a
* `virtio_queues` - (Optional) Virtio multi-queue size. Only if `model` is `virtio`.
* `physical_device` - (Optional) Physical device hosting the virtual network.
* `security_groups` - (Optional) List of security group IDs to use on the virtual network.
* `method` - (Optional) Method of obtaining IP addresses (empty or `static`, `dhcp`, `skip`).
* `gateway` - (Optional) Default gateway set for the NIC.
* `dns` - (Optional) DNS server set for the NIC. **Please make sure `INHERIT_VNET_ATTR="DNS"` is added to `/etc/one/oned.conf`.**
* `network_mode_auto` - (Optional) A boolean letting the scheduler pick the Virtual Networks the VM NICs will be attached to. Can only be used at VM creation.
* `sched_requirements` - (Optional) A boolean expression to select virtual networks (evaluates to true) to attach the NIC, when `network_mode_auto` is true. Can only be used at VM creation.
* `sched_rank` - (Optional) Arithmetic expression to sort the suitable Virtual Networks for this NIC, when `network_mode_auto` is true. Can only be used at VM creation.
Expand Down Expand Up @@ -211,6 +217,9 @@ The following attribute are exported:
* `computed_virtio_queues` - Virtio multi-queue size.
* `computed_physical_device` - Physical device hosting the virtual network.
* `computed_security_groups` - List of security group IDs to use on the virtual.
* `computed_method` - Method of obtaining IP addresses (empty or `static`, `dhcp`, `skip`).
* `computed_gateway` - Default gateway set for the NIC.
* `computed_dns` - DNS server set for the NIC.

### Template disk

Expand All @@ -230,6 +239,9 @@ The following attribute are exported:
* `computed_virtio_queues` - Virtio multi-queue size.
* `computed_physical_device` - Physical device hosting the virtual network.
* `computed_security_groups` - List of security group IDs to use on the virtual.
* `computed_method` - Method of obtaining IP addresses (empty or `static`, `dhcp`, `skip`).
* `computed_gateway` - Default gateway set for the NIC.
* `computed_dns` - DNS server set for the NIC.

### Disk

Expand Down

0 comments on commit 5fa5ea4

Please sign in to comment.