Compare commits

...

7 commits

Author SHA1 Message Date
8883936cab chore(deps): update helm release renovate to 39.185.*
Some checks failed
checks / pre-commit (push) Failing after 10s
checks / k8s (push) Failing after 4s
checks / tflint (push) Failing after 4s
OpenTofu deployments / authentik (push) Failing after 6s
OpenTofu deployments / adguard (push) Failing after 7s
2025-03-01 01:19:58 +00:00
bd17160258
feat: import arrs group into tofu and assign all arr apps to it
Some checks failed
checks / tflint (push) Successful in 33s
OpenTofu deployments / adguard (push) Failing after 1m10s
checks / k8s (push) Failing after 14m15s
checks / pre-commit (push) Failing after 14m20s
OpenTofu deployments / authentik (push) Failing after 3h14m7s
2025-02-28 17:22:14 +01:00
bd55ff0a76
chore(deps): update nextcloud docker tag to v31
Some checks failed
checks / k8s (push) Successful in 15s
checks / tflint (push) Successful in 14s
OpenTofu deployments / authentik (push) Failing after 1s
checks / pre-commit (push) Failing after 36s
OpenTofu deployments / adguard (push) Failing after 24s
2025-02-28 16:52:43 +01:00
f2817e1710 chore(deps): update registry-1.docker.io/bitnamicharts/elasticsearch docker tag to v21.4.7
Some checks failed
checks / k8s (push) Successful in 1m25s
checks / tflint (push) Failing after 24s
checks / pre-commit (push) Failing after 4m3s
OpenTofu deployments / adguard (push) Successful in 35s
OpenTofu deployments / authentik (push) Has been cancelled
2025-02-28 01:59:10 +00:00
3f9fbefedc chore(deps): update helm release renovate to 39.182.*
Some checks failed
checks / pre-commit (push) Failing after 39s
OpenTofu deployments / adguard (push) Successful in 23s
checks / k8s (push) Successful in 11s
checks / tflint (push) Successful in 12s
OpenTofu deployments / authentik (push) Failing after 3h10m53s
2025-02-27 01:35:51 +00:00
bd3cad74d1 chore(deps): update netbirdio/signal docker tag to v0.37.1
Some checks failed
checks / k8s (push) Successful in 24s
OpenTofu deployments / adguard (push) Successful in 23s
checks / tflint (push) Successful in 15s
OpenTofu deployments / authentik (push) Failing after 18s
checks / pre-commit (push) Failing after 1m6s
2025-02-27 01:32:27 +00:00
91d6ad1f33 chore(deps): update helm release authentik to v2025
Some checks failed
checks / k8s (push) Successful in 9s
checks / tflint (push) Successful in 11s
checks / pre-commit (push) Failing after 1m10s
OpenTofu deployments / adguard (push) Successful in 21s
OpenTofu deployments / authentik (push) Has been cancelled
2025-02-26 01:16:47 +00:00
7 changed files with 15 additions and 10 deletions

View file

@ -23,7 +23,7 @@ services:
max-size: "500m"
max-file: "2"
signal:
image: netbirdio/signal:0.36.7
image: netbirdio/signal:0.37.1
restart: unless-stopped
volumes:
- netbird-signal:/var/lib/netbird

View file

@ -1,4 +1,4 @@
FROM nextcloud:30.0.6-apache
FROM nextcloud:31.0.0-apache
RUN set -ex; \
\

View file

@ -14,7 +14,7 @@ services:
- nextcloud
nextcloud:
image: git.roboces.dev/catalin/fukuops:nextcloud-30.0.6
image: git.roboces.dev/catalin/fukuops:nextcloud-31.0.0
volumes:
- /mnt/nas1/legacy-storage/cloud/cloud/data:/var/www/html/data
- /mnt/nas1/legacy-storage/cloud/cloud/config:/var/www/html/config

View file

@ -12,7 +12,7 @@ spec:
sources:
- chart: authentik
repoURL: https://charts.goauthentik.io/
targetRevision: 2024.12.*
targetRevision: 2025.2.*
helm:
valuesObject:
authentik:

View file

@ -12,7 +12,7 @@ spec:
sources:
- chart: elasticsearch
repoURL: registry-1.docker.io/bitnamicharts
targetRevision: 21.4.6
targetRevision: 21.4.7
helm:
valuesObject:
service:

View file

@ -13,7 +13,7 @@ spec:
sources:
- chart: renovate
repoURL: https://docs.renovatebot.com/helm-charts
targetRevision: 39.176.*
targetRevision: 39.185.*
helm:
valuesObject:
renovate:

View file

@ -27,6 +27,11 @@ resource "authentik_group" "admins" {
is_superuser = true
}
resource "authentik_group" "arrs" {
name = "arrs"
is_superuser = false
}
resource "authentik_group" "vpn" {
name = "vpn"
is_superuser = false
@ -116,7 +121,7 @@ module "sonarr" {
source = "../modules/authentik-proxy"
app_name = "Sonarr"
app_slug = "sonarr"
app_access_group_id = authentik_group.admins.id
app_access_group_id = authentik_group.arrs.id
app_url = "https://sonarr.fukurokuju.dev"
internal_host = "http://192.168.1.3:38013/"
internal_host_ssl_validation = false
@ -127,7 +132,7 @@ module "radarr" {
source = "../modules/authentik-proxy"
app_name = "Radarr"
app_slug = "radarr"
app_access_group_id = authentik_group.admins.id
app_access_group_id = authentik_group.arrs.id
app_url = "https://radarr.fukurokuju.dev"
internal_host = "http://192.168.1.3:38012/"
internal_host_ssl_validation = false
@ -138,7 +143,7 @@ module "lidarr" {
source = "../modules/authentik-proxy"
app_name = "Lidarr"
app_slug = "lidarr"
app_access_group_id = authentik_group.admins.id
app_access_group_id = authentik_group.arrs.id
app_url = "https://lidarr.fukurokuju.dev"
internal_host = "http://192.168.1.3:38010/"
internal_host_ssl_validation = false
@ -149,7 +154,7 @@ module "qbit" {
source = "../modules/authentik-proxy"
app_name = "qBit"
app_slug = "qbit"
app_access_group_id = authentik_group.admins.id
app_access_group_id = authentik_group.arrs.id
app_url = "https://qbit.fukurokuju.dev"
internal_host = "http://192.168.1.3:30024"
internal_host_ssl_validation = false