Compare commits
7 commits
366649bb2a
...
8883936cab
| Author | SHA1 | Date | |
|---|---|---|---|
| 8883936cab | |||
|
bd17160258 |
|||
|
bd55ff0a76 |
|||
| f2817e1710 | |||
| 3f9fbefedc | |||
| bd3cad74d1 | |||
| 91d6ad1f33 |
7 changed files with 15 additions and 10 deletions
|
|
@ -23,7 +23,7 @@ services:
|
||||||
max-size: "500m"
|
max-size: "500m"
|
||||||
max-file: "2"
|
max-file: "2"
|
||||||
signal:
|
signal:
|
||||||
image: netbirdio/signal:0.36.7
|
image: netbirdio/signal:0.37.1
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- netbird-signal:/var/lib/netbird
|
- netbird-signal:/var/lib/netbird
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM nextcloud:30.0.6-apache
|
FROM nextcloud:31.0.0-apache
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
\
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ services:
|
||||||
- nextcloud
|
- nextcloud
|
||||||
|
|
||||||
nextcloud:
|
nextcloud:
|
||||||
image: git.roboces.dev/catalin/fukuops:nextcloud-30.0.6
|
image: git.roboces.dev/catalin/fukuops:nextcloud-31.0.0
|
||||||
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
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ spec:
|
||||||
sources:
|
sources:
|
||||||
- chart: authentik
|
- chart: authentik
|
||||||
repoURL: https://charts.goauthentik.io/
|
repoURL: https://charts.goauthentik.io/
|
||||||
targetRevision: 2024.12.*
|
targetRevision: 2025.2.*
|
||||||
helm:
|
helm:
|
||||||
valuesObject:
|
valuesObject:
|
||||||
authentik:
|
authentik:
|
||||||
|
|
|
||||||
|
|
@ -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.6
|
targetRevision: 21.4.7
|
||||||
helm:
|
helm:
|
||||||
valuesObject:
|
valuesObject:
|
||||||
service:
|
service:
|
||||||
|
|
|
||||||
|
|
@ -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.176.*
|
targetRevision: 39.185.*
|
||||||
helm:
|
helm:
|
||||||
valuesObject:
|
valuesObject:
|
||||||
renovate:
|
renovate:
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,11 @@ 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
|
||||||
|
|
@ -116,7 +121,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.admins.id
|
app_access_group_id = authentik_group.arrs.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
|
||||||
|
|
@ -127,7 +132,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.admins.id
|
app_access_group_id = authentik_group.arrs.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
|
||||||
|
|
@ -138,7 +143,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.admins.id
|
app_access_group_id = authentik_group.arrs.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
|
||||||
|
|
@ -149,7 +154,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.admins.id
|
app_access_group_id = authentik_group.arrs.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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue