move from data disk to virtiofs share
This commit is contained in:
parent
f7c4660584
commit
1f0c6e25ec
4 changed files with 4 additions and 5 deletions
|
@ -36,7 +36,7 @@ server=/pim.kunis.nl/192.168.30.7
|
|||
log-dhcp
|
||||
log-queries
|
||||
# Resolve dns.dmz to addresses on main NIC
|
||||
interface-name=hermes.dmz,ens3
|
||||
interface-name=hermes.dmz,ens4
|
||||
# Non-conventional port because we also run nsd on this machine
|
||||
port=5353
|
||||
# Override addresses of name servers
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
server:
|
||||
ip-address: ens3
|
||||
ip-address: ens4
|
||||
port: 53
|
||||
server-count: 1
|
||||
verbosity: 1
|
||||
|
|
|
@ -12,7 +12,7 @@ terraform {
|
|||
}
|
||||
|
||||
provider "libvirt" {
|
||||
uri = "qemu+ssh://root@atlas.lan/system"
|
||||
uri = "qemu+ssh://root@atlas.hyp/system"
|
||||
}
|
||||
|
||||
resource "libvirt_volume" "data" {
|
||||
|
|
|
@ -15,14 +15,13 @@ terraform {
|
|||
}
|
||||
|
||||
provider "libvirt" {
|
||||
uri = "qemu+ssh://root@atlas.lan/system"
|
||||
uri = "qemu+ssh://root@atlas.hyp/system"
|
||||
}
|
||||
|
||||
module "vm" {
|
||||
source = "git::https://git.pim.kunis.nl/home/tf-modules.git//debian"
|
||||
name = "hermes"
|
||||
domain_name = "tf-hermes"
|
||||
data_disk = "/kvm/data/hermes-data"
|
||||
fixed_address = "192.168.30.7/24"
|
||||
mac = "CA:FE:C0:FF:EE:07"
|
||||
fixed_dns = "192.168.30.1"
|
||||
|
|
Reference in a new issue