Compare commits
4 commits
f2817e1710
...
78e0d4091f
| Author | SHA1 | Date | |
|---|---|---|---|
| 78e0d4091f | |||
| 8883936cab | |||
|
bd17160258 |
|||
|
bd55ff0a76 |
5 changed files with 13 additions and 8 deletions
|
|
@ -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: elasticsearch
|
- chart: elasticsearch
|
||||||
repoURL: registry-1.docker.io/bitnamicharts
|
repoURL: registry-1.docker.io/bitnamicharts
|
||||||
targetRevision: 21.4.7
|
targetRevision: 21.4.8
|
||||||
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.182.*
|
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