change VM architecture
This commit is contained in:
parent
1a527394b3
commit
3887b9979b
4 changed files with 69 additions and 80 deletions
|
@ -1,25 +0,0 @@
|
||||||
docker_node_labels:
|
|
||||||
- hostname: maestro
|
|
||||||
labels: {}
|
|
||||||
- hostname: swarmpub1
|
|
||||||
labels:
|
|
||||||
public: "true"
|
|
||||||
mastodon: "true"
|
|
||||||
- hostname: swarmpub2
|
|
||||||
labels:
|
|
||||||
public: "true"
|
|
||||||
jitsi: "true"
|
|
||||||
- hostname: swarmpriv1
|
|
||||||
labels:
|
|
||||||
private: "true"
|
|
||||||
overleaf: "true"
|
|
||||||
syncthing: "true"
|
|
||||||
hedgedoc: "true"
|
|
||||||
radicale: "true"
|
|
||||||
- hostname: swarmpriv2
|
|
||||||
labels:
|
|
||||||
private: "true"
|
|
||||||
seafile: "true"
|
|
||||||
freshrss: "true"
|
|
||||||
pihole: "true"
|
|
||||||
discourse: "true"
|
|
|
@ -7,11 +7,5 @@ all:
|
||||||
children:
|
children:
|
||||||
workers:
|
workers:
|
||||||
hosts:
|
hosts:
|
||||||
swarmpub1:
|
bancomart:
|
||||||
ansible_host: swarmpub1.dmz
|
ansible_host: bancomart.dmz
|
||||||
swarmpub2:
|
|
||||||
ansible_host: swarmpub2.dmz
|
|
||||||
swarmpriv1:
|
|
||||||
ansible_host: swarmpriv1.dmz
|
|
||||||
swarmpriv2:
|
|
||||||
ansible_host: swarmpriv2.dmz
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ provider "powerdns" {
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "powerdns_record" "subdomain_pim" {
|
resource "powerdns_record" "subdomain_pim" {
|
||||||
for_each = toset(["dav", "git", "meet", "rss", "latex", "md", "swarm", "traefik", "syncthing", "cloud", "pihole", "ntfy", "apprise", "uptime", "concourse", "discourse"])
|
for_each = toset(["dav", "git", "meet", "rss", "latex", "md", "swarm", "traefik", "syncthing", "cloud", "pihole", "ntfy", "apprise", "uptime", "concourse"])
|
||||||
zone = "pim.kunis.nl."
|
zone = "pim.kunis.nl."
|
||||||
name = "${each.key}.pim.kunis.nl."
|
name = "${each.key}.pim.kunis.nl."
|
||||||
type = "CNAME"
|
type = "CNAME"
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
terraform {
|
terraform {
|
||||||
backend "pg" {
|
backend "pg" {
|
||||||
schema_name = "shoarma"
|
schema_name = "shoarma"
|
||||||
conn_str = "postgres://terraform@10.42.0.1/terraform_state"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
required_providers {
|
required_providers {
|
||||||
|
@ -25,58 +24,79 @@ provider "libvirt" {
|
||||||
uri = "qemu+ssh://root@jefke.hyp/system"
|
uri = "qemu+ssh://root@jefke.hyp/system"
|
||||||
}
|
}
|
||||||
|
|
||||||
module "manager" {
|
module "maestro" {
|
||||||
source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
source = "../../tf-modules/debian"
|
||||||
name = "maestro"
|
name = "maestro"
|
||||||
domain_name = "tf-maestro"
|
domain_name = "tf-maestro"
|
||||||
memory = 1024
|
memory = 1024 * 10
|
||||||
mac = "CA:FE:C0:FF:EE:08"
|
mac = "CA:FE:C0:FF:EE:08"
|
||||||
hypervisor_host = "atlas.hyp"
|
|
||||||
providers = {
|
providers = {
|
||||||
libvirt = libvirt
|
libvirt = libvirt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module "swarmpub1" {
|
module "bancomart" {
|
||||||
source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
source = "../../tf-modules/debian"
|
||||||
name = "swarmpub1"
|
name = "bancomart"
|
||||||
domain_name = "tf-swarmpub1"
|
domain_name = "tf-bancomart"
|
||||||
memory = 1024 * 5
|
memory = 1024 * 10
|
||||||
hypervisor_host = "atlas.hyp"
|
|
||||||
providers = {
|
|
||||||
libvirt = libvirt
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module "swarmpriv1" {
|
|
||||||
source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
|
||||||
name = "swarmpriv1"
|
|
||||||
domain_name = "tf-swarmpriv1"
|
|
||||||
memory = 1024 * 5
|
|
||||||
hypervisor_host = "atlas.hyp"
|
|
||||||
providers = {
|
|
||||||
libvirt = libvirt
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module "swarmpub2" {
|
|
||||||
source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
|
||||||
name = "swarmpub2"
|
|
||||||
domain_name = "tf-swarmpub2"
|
|
||||||
memory = 1024 * 3
|
|
||||||
hypervisor_host = "jefke.hyp"
|
|
||||||
providers = {
|
providers = {
|
||||||
libvirt = libvirt.jefke
|
libvirt = libvirt.jefke
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module "swarmpriv2" {
|
#module "manager" {
|
||||||
source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
||||||
name = "swarmpriv2"
|
# name = "maestro"
|
||||||
domain_name = "tf-swarmpriv2"
|
# domain_name = "tf-maestro"
|
||||||
memory = 1024 * 3
|
# memory = 1024
|
||||||
hypervisor_host = "jefke.hyp"
|
# mac = "CA:FE:C0:FF:EE:08"
|
||||||
providers = {
|
# hypervisor_host = "atlas.hyp"
|
||||||
libvirt = libvirt.jefke
|
# providers = {
|
||||||
}
|
# libvirt = libvirt
|
||||||
}
|
# }
|
||||||
|
#}
|
||||||
|
#
|
||||||
|
#module "swarmpub1" {
|
||||||
|
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
||||||
|
# name = "swarmpub1"
|
||||||
|
# domain_name = "tf-swarmpub1"
|
||||||
|
# memory = 1024 * 5
|
||||||
|
# hypervisor_host = "atlas.hyp"
|
||||||
|
# providers = {
|
||||||
|
# libvirt = libvirt
|
||||||
|
# }
|
||||||
|
#}
|
||||||
|
#
|
||||||
|
#module "swarmpriv1" {
|
||||||
|
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
||||||
|
# name = "swarmpriv1"
|
||||||
|
# domain_name = "tf-swarmpriv1"
|
||||||
|
# memory = 1024 * 5
|
||||||
|
# hypervisor_host = "atlas.hyp"
|
||||||
|
# providers = {
|
||||||
|
# libvirt = libvirt
|
||||||
|
# }
|
||||||
|
#}
|
||||||
|
#
|
||||||
|
#module "swarmpub2" {
|
||||||
|
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
||||||
|
# name = "swarmpub2"
|
||||||
|
# domain_name = "tf-swarmpub2"
|
||||||
|
# memory = 1024 * 3
|
||||||
|
# hypervisor_host = "jefke.hyp"
|
||||||
|
# providers = {
|
||||||
|
# libvirt = libvirt.jefke
|
||||||
|
# }
|
||||||
|
#}
|
||||||
|
#
|
||||||
|
#module "swarmpriv2" {
|
||||||
|
# source = "git::https://git.kun.is/home/tf-modules.git//debian"
|
||||||
|
# name = "swarmpriv2"
|
||||||
|
# domain_name = "tf-swarmpriv2"
|
||||||
|
# memory = 1024 * 3
|
||||||
|
# hypervisor_host = "jefke.hyp"
|
||||||
|
# providers = {
|
||||||
|
# libvirt = libvirt.jefke
|
||||||
|
# }
|
||||||
|
#}
|
||||||
|
|
Reference in a new issue