add vm job config with networking
This commit is contained in:
parent
d62ebc01ab
commit
a4f218dc99
1 changed files with 10 additions and 13 deletions
23
jobs/user-vms/distro.hcl
Executable file → Normal file
23
jobs/user-vms/distro.hcl
Executable file → Normal file
|
@ -4,10 +4,6 @@ job "distro-vm" {
|
||||||
group "distro-vm" {
|
group "distro-vm" {
|
||||||
|
|
||||||
network {
|
network {
|
||||||
port "ssh" {
|
|
||||||
to = -1
|
|
||||||
}
|
|
||||||
|
|
||||||
mode = "host"
|
mode = "host"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,6 +12,11 @@ job "distro-vm" {
|
||||||
}
|
}
|
||||||
|
|
||||||
task "distro-vm" {
|
task "distro-vm" {
|
||||||
|
constraint {
|
||||||
|
attribute = "${attr.unique.hostname}"
|
||||||
|
value = "wheatley"
|
||||||
|
}
|
||||||
|
|
||||||
resources {
|
resources {
|
||||||
cpu = 1000
|
cpu = 1000
|
||||||
memory = 1024
|
memory = 1024
|
||||||
|
@ -36,17 +37,13 @@ job "distro-vm" {
|
||||||
|
|
||||||
drive_interface = "virtio"
|
drive_interface = "virtio"
|
||||||
|
|
||||||
port_map {
|
|
||||||
ssh = 22
|
|
||||||
}
|
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
"-net",
|
"-netdev",
|
||||||
"nic,model=virtio",
|
"bridge,id=hn0",
|
||||||
"-net",
|
"-device",
|
||||||
"user",
|
"virtio-net-pci,netdev=hn0,id=nic1",
|
||||||
"-smbios",
|
"-smbios",
|
||||||
"type=1,serial=ds=nocloud-net;s=http://10.10.0.4:8000/",
|
"type=1,serial=ds=nocloud-net;s=http://136.206.16.5:8000/",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue