Compare commits

..

No commits in common. "52fd49d95998d5304f16b11d586c12c44d615e88" and "a6eb4a3ea73445e6611f8a3ebbfe588e640cd140" have entirely different histories.

6 changed files with 6 additions and 41 deletions

View file

@ -155,37 +155,6 @@ services:
- 21027:21027/udp - 21027:21027/udp
restart: unless-stopped restart: unless-stopped
wiki-db:
image: postgres:15-alpine
environment:
POSTGRES_DB: wiki
POSTGRES_PASSWORD: $DB_PASS
POSTGRES_USER: wikijs
logging:
driver: "none"
restart: unless-stopped
volumes:
- db-data:/var/lib/postgresql/data
networks:
- gitea_main
wiki:
container_name: wiki
image: ghcr.io/requarks/wiki:2.5.303
depends_on:
- wiki-db
environment:
DB_TYPE: postgres
DB_HOST: wiki-db
DB_PORT: 5432
DB_USER: wikijs
DB_PASS: $DB_PASS
DB_NAME: wiki
restart: unless-stopped
ports:
- "1234:3000"
networks:
- gitea_main
networks: networks:
gitea_main: gitea_main:
@ -194,4 +163,3 @@ networks:
volumes: volumes:
linkstack: linkstack:
n8n_data: n8n_data:
db-data:

View file

@ -57,7 +57,7 @@ services:
- PGID=1000 - PGID=1000
sonarr: sonarr:
image: ghcr.io/linuxserver/sonarr@sha256:0777b308a414000505651059a95af373ded6aba8ce5a40b50d7aad333dc912e2 image: ghcr.io/linuxserver/sonarr@sha256:bffa87787eacff9023df4400f521c159566d14b5a280caec8b54196071e6038e
container_name: sonarr container_name: sonarr
ports: ports:
- "8989:8989" - "8989:8989"

View file

@ -6,7 +6,6 @@ resource "proxmox_virtual_environment_vm" "K3s-Master" {
name = "K3s-Master" name = "K3s-Master"
description = "Kubernetes master" description = "Kubernetes master"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"] tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
started = false
agent { agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready enabled = true # read 'Qemu guest agent' section, change to true only when ready

View file

@ -6,7 +6,6 @@ resource "proxmox_virtual_environment_vm" "K3s-Master2" {
name = "K3s-Master2" name = "K3s-Master2"
description = "Kubernetes Master" description = "Kubernetes Master"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"] tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
started = false
agent { agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready enabled = true # read 'Qemu guest agent' section, change to true only when ready

View file

@ -6,7 +6,6 @@ resource "proxmox_virtual_environment_vm" "K3s-Master3" {
name = "K3s-Master3" name = "K3s-Master3"
description = "Kubernetes master" description = "Kubernetes master"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"] tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
started = false
agent { agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready enabled = true # read 'Qemu guest agent' section, change to true only when ready

View file

@ -2,17 +2,17 @@ resource "proxmox_virtual_environment_vm" "Runner" {
# VM General Settings # VM General Settings
node_name = "prox" node_name = "prox"
vm_id = 952 vm_id = 207
name = "Runner" name = "Runner"
description = "Forgejo Runner for iac" description = "Forgejo Runner"
tags = ["tofu", "ubuntu-22", "iac-repo", "infrastructure"] tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
agent { agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready enabled = true # read 'Qemu guest agent' section, change to true only when ready
} }
clone { clone {
vm_id = 8100 vm_id = 8000
} }
# VM CPU Settings # VM CPU Settings
@ -35,7 +35,7 @@ resource "proxmox_virtual_environment_vm" "Runner" {
# VM Disk Settings # VM Disk Settings
disk { disk {
datastore_id = "Fast2Tb" datastore_id = "Fast2Tb"
size = 40 size = 60
interface = "scsi0" interface = "scsi0"
} }