Compare commits

...

4 commits

Author SHA1 Message Date
78e0d4091f chore(deps): update registry-1.docker.io/bitnamicharts/elasticsearch docker tag to v21.4.8
Some checks failed
checks / pre-commit (push) Failing after 6s
checks / k8s (push) Failing after 4s
checks / tflint (push) Failing after 7s
OpenTofu deployments / authentik (push) Failing after 5s
OpenTofu deployments / adguard (push) Failing after 7s
2025-03-05 01:17:32 +00:00
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
5 changed files with 13 additions and 8 deletions

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: elasticsearch
repoURL: registry-1.docker.io/bitnamicharts
targetRevision: 21.4.7
targetRevision: 21.4.8
helm:
valuesObject:
service:

View file

@ -13,7 +13,7 @@ spec:
sources:
- chart: renovate
repoURL: https://docs.renovatebot.com/helm-charts
targetRevision: 39.182.*
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