Compare commits

..

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

6 changed files with 6 additions and 41 deletions

View file

@ -154,38 +154,7 @@ services:
- 22000:22000/udp
- 21027:21027/udp
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:
gitea_main:
@ -194,4 +163,3 @@ networks:
volumes:
linkstack:
n8n_data:
db-data:

View file

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

View file

@ -6,7 +6,6 @@ resource "proxmox_virtual_environment_vm" "K3s-Master" {
name = "K3s-Master"
description = "Kubernetes master"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
started = false
agent {
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"
description = "Kubernetes Master"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
started = false
agent {
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"
description = "Kubernetes master"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
started = false
agent {
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
node_name = "prox"
vm_id = 952
vm_id = 207
name = "Runner"
description = "Forgejo Runner for iac"
tags = ["tofu", "ubuntu-22", "iac-repo", "infrastructure"]
description = "Forgejo Runner"
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
agent {
enabled = true # read 'Qemu guest agent' section, change to true only when ready
}
clone {
vm_id = 8100
vm_id = 8000
}
# VM CPU Settings
@ -35,7 +35,7 @@ resource "proxmox_virtual_environment_vm" "Runner" {
# VM Disk Settings
disk {
datastore_id = "Fast2Tb"
size = 40
size = 60
interface = "scsi0"
}