Compare commits

..

No commits in common. "78e0d4091f37f2d4993a77d1b9979c998add60f6" and "f2817e1710a39e8d477f8b4ef6bfe5db73ece428" have entirely different histories.

5 changed files with 8 additions and 13 deletions

View file

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

View file

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

View file

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

View file

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

View file

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