turn off windows, update Plex
Some checks failed
OpenTofu Automation / deploy (push) Failing after 13s
Some checks failed
OpenTofu Automation / deploy (push) Failing after 13s
This commit is contained in:
parent
f8c6fd22e7
commit
b95716d38b
4 changed files with 17 additions and 4 deletions
|
@ -111,6 +111,7 @@ jobs:
|
||||||
e4c5d8be-b91f-41ab-8071-b23e00203340 > kasm_host
|
e4c5d8be-b91f-41ab-8071-b23e00203340 > kasm_host
|
||||||
566329f5-5af3-4bcd-b187-b23e00216134 > netboot_host
|
566329f5-5af3-4bcd-b187-b23e00216134 > netboot_host
|
||||||
fb62a8d1-6dd5-4fab-aff4-b23e0021e215 > npm_host
|
fb62a8d1-6dd5-4fab-aff4-b23e0021e215 > npm_host
|
||||||
|
fe0a2fa5-8e2b-4b4f-ac68-b26100315b20 > plex_host
|
||||||
90a16954-45df-49ad-9f45-b23e002273c5 > runner_host
|
90a16954-45df-49ad-9f45-b23e002273c5 > runner_host
|
||||||
a5b6fa4b-4643-4f85-988b-b23e00245e2f > ubu_host
|
a5b6fa4b-4643-4f85-988b-b23e00245e2f > ubu_host
|
||||||
26b06759-9791-42d7-a076-b23e0063c4dd > ssh_private_key
|
26b06759-9791-42d7-a076-b23e0063c4dd > ssh_private_key
|
||||||
|
@ -128,6 +129,7 @@ jobs:
|
||||||
kasm.lan ansible_host=${{ steps.bitwarden-secrets.outputs.kasm_host }} ansible_user=mafyuh
|
kasm.lan ansible_host=${{ steps.bitwarden-secrets.outputs.kasm_host }} ansible_user=mafyuh
|
||||||
netboot.lan ansible_host=${{ steps.bitwarden-secrets.outputs.netboot_host }} ansible_user=mafyuh
|
netboot.lan ansible_host=${{ steps.bitwarden-secrets.outputs.netboot_host }} ansible_user=mafyuh
|
||||||
npm.lan ansible_host=${{ steps.bitwarden-secrets.outputs.npm_host }} ansible_user=mafyuh
|
npm.lan ansible_host=${{ steps.bitwarden-secrets.outputs.npm_host }} ansible_user=mafyuh
|
||||||
|
plex.lan ansible_host=${{ steps.bitwarden-secrets.outputs.plex_host }} ansible_user=mafyuh ansible_port=2009
|
||||||
runner.lan ansible_host=${{ steps.bitwarden-secrets.outputs.runner_host }} ansible_user=mafyuh
|
runner.lan ansible_host=${{ steps.bitwarden-secrets.outputs.runner_host }} ansible_user=mafyuh
|
||||||
ubu.lan ansible_host=${{ steps.bitwarden-secrets.outputs.ubu_host }} ansible_user=mafyuh
|
ubu.lan ansible_host=${{ steps.bitwarden-secrets.outputs.ubu_host }} ansible_user=mafyuh
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -8,15 +8,21 @@ services:
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=Etc/UTC
|
- TZ=Etc/UTC
|
||||||
- VERSION=docker
|
- VERSION=docker
|
||||||
|
- NVIDIA_VISIBLE_DEVICES=all
|
||||||
volumes:
|
volumes:
|
||||||
- /docker/appdata/plex/library:/config
|
- /docker/appdata/plex/library:/config
|
||||||
- nas:/data/media
|
- nas:/data/media
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- capabilities: [gpu]
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
nas:
|
nas:
|
||||||
driver: local
|
driver: local
|
||||||
driver_opts:
|
driver_opts:
|
||||||
type: nfs
|
type: nfs
|
||||||
o: addr=nas.lan,vers=4,rw
|
o: addr=nas.lan,vers=4,ro
|
||||||
device: ":/mnt/thePool/thePoolShare/Media"
|
device: ":/mnt/thePool/thePoolShare/Media"
|
|
@ -16,7 +16,7 @@ resource "proxmox_virtual_environment_vm" "Plex" {
|
||||||
|
|
||||||
network_device {
|
network_device {
|
||||||
bridge = "vmbr0"
|
bridge = "vmbr0"
|
||||||
vlan_id = 1
|
vlan_id = 23
|
||||||
}
|
}
|
||||||
|
|
||||||
disk {
|
disk {
|
||||||
|
@ -29,6 +29,11 @@ resource "proxmox_virtual_environment_vm" "Plex" {
|
||||||
vm_id = "9996"
|
vm_id = "9996"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vga {
|
||||||
|
memory = 16
|
||||||
|
type = "serial0"
|
||||||
|
}
|
||||||
|
|
||||||
initialization {
|
initialization {
|
||||||
ip_config {
|
ip_config {
|
||||||
ipv4 {
|
ipv4 {
|
||||||
|
|
|
@ -3,9 +3,9 @@ resource "proxmox_virtual_environment_vm" "Windows11" {
|
||||||
node_name = "pve2"
|
node_name = "pve2"
|
||||||
vm_id = 250
|
vm_id = 250
|
||||||
tags = ["tofu"]
|
tags = ["tofu"]
|
||||||
started = true
|
started = false
|
||||||
bios = "ovmf"
|
bios = "ovmf"
|
||||||
machine = "q35"
|
machine = "pc-q35-9.0"
|
||||||
|
|
||||||
agent {
|
agent {
|
||||||
enabled = true
|
enabled = true
|
||||||
|
|
Loading…
Reference in a new issue