move to virtiofs shared directory

This commit is contained in:
Pim Kunis 2023-04-26 14:53:57 +02:00
parent 37fe3937e5
commit 8a634be9ab
3 changed files with 10 additions and 10 deletions

View file

@ -39,6 +39,7 @@ CHARSET = utf8
[indexer]
ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve
ISSUE_INDEXER_TYPE = db
[session]
PROVIDER_CONFIG = /data/gitea/sessions

View file

@ -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" {

View file

@ -12,15 +12,14 @@ terraform {
}
provider "libvirt" {
uri = "qemu+ssh://root@atlas.lan/system"
uri = "qemu+ssh://root@atlas.hyp/system"
}
module "tf-max" {
source = "git::https://git.pim.kunis.nl/home/tf-modules.git//debian"
name = "max"
domain_name = "tf-max"
data_disk = "/kvm/data/max-data"
memory = 1024 * 8
mac = "CA:FE:C0:FF:EE:03"
disk_size = 1024 * 1024 * 1024 * 30
module "debian" {
source = "/home/pim/repos/tf-modules/debian"
name = "max"
domain_name = "tf-max"
memory = 1024 * 8
mac = "CA:FE:C0:FF:EE:03"
disk_size = 1024 * 1024 * 1024 * 30
}