Compare commits
27 Commits
dd70c87b36
...
01881907bb
Author | SHA1 | Date |
---|---|---|
SeanOMik | 01881907bb | |
SeanOMik | e514df2f3e | |
SeanOMik | 022938e805 | |
SeanOMik | 61770dc490 | |
SeanOMik | 36d53cc5e8 | |
SeanOMik | bca9e1209c | |
SeanOMik | 9c1e8dc555 | |
SeanOMik | 42b249bd30 | |
SeanOMik | 1d6457cf39 | |
SeanOMik | ad8e7853a6 | |
SeanOMik | 47a36fb75d | |
SeanOMik | ae4b14b1b6 | |
SeanOMik | 1ac0ff5f36 | |
SeanOMik | bf189961f7 | |
SeanOMik | d9a974b973 | |
SeanOMik | 22edaa05d6 | |
SeanOMik | 87fb418593 | |
SeanOMik | 2abf740c55 | |
SeanOMik | 8e646d7b78 | |
SeanOMik | f279ee7bb6 | |
SeanOMik | 245b7c0bca | |
SeanOMik | 5c8cdb3cbb | |
SeanOMik | e38e45e68d | |
SeanOMik | 86a5df20e0 | |
SeanOMik | de8325dda3 | |
SeanOMik | 437d80a224 | |
SeanOMik | 3daf7fef97 |
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: traefik
|
||||
version: '31.1.0'
|
||||
version: '30.1.0'
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: traefik-charts
|
||||
|
|
|
@ -10,7 +10,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: authentik
|
||||
version: 2024.8.2
|
||||
version: 2024.6.4
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: authentik-charts
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: mysql
|
||||
version: 11.1.17
|
||||
version: 11.1.15
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: bitnami-charts
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: pgadmin4
|
||||
version: "1.29.0"
|
||||
version: "1.28.0"
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: runix-charts
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: redis
|
||||
version: 20.1.x
|
||||
version: 20.0.x
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: bitnami-charts
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json
|
||||
apiVersion: helm.toolkit.fluxcd.io/v2
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
|
@ -9,68 +8,58 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: app-template
|
||||
version: 3.4.0
|
||||
version: 1.3.x
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: bjws-charts
|
||||
namespace: flux-system
|
||||
|
||||
values:
|
||||
controllers:
|
||||
main:
|
||||
pod:
|
||||
securityContext:
|
||||
runAsNonRoot: true
|
||||
runAsUser: 65534
|
||||
runAsGroup: 65533
|
||||
fsGroup: 10000
|
||||
fsGroupChangePolicy: OnRootMismatch
|
||||
image:
|
||||
repository: oci.seedno.de/seednode/nginx
|
||||
tag: latest
|
||||
|
||||
containers:
|
||||
main:
|
||||
image:
|
||||
repository: git.${SECRET_NEW_DOMAIN}/seanomik/nginx
|
||||
tag: 1.27.1
|
||||
pullPolicy: Always
|
||||
|
||||
resources:
|
||||
requests:
|
||||
memory: 500Mi
|
||||
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities: { drop: ["ALL"] }
|
||||
args:
|
||||
- -c
|
||||
- /config/nginx.conf
|
||||
|
||||
service:
|
||||
app:
|
||||
controller: main
|
||||
main:
|
||||
ports:
|
||||
http:
|
||||
port: 6544
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: letsencrypt-production
|
||||
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||
hosts:
|
||||
- host: "cdn.${SECRET_NEW_DOMAIN}"
|
||||
paths:
|
||||
- path: /
|
||||
service:
|
||||
identifier: app
|
||||
port: http
|
||||
|
||||
- host: &host "cdn.${SECRET_NEW_DOMAIN}"
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- hosts:
|
||||
- *host
|
||||
|
||||
persistence:
|
||||
config:
|
||||
type: configMap
|
||||
name: nginx-cdn-configmap
|
||||
globalMounts:
|
||||
- path: /etc/nginx/nginx.conf
|
||||
subPath: nginx.conf
|
||||
|
||||
storage:
|
||||
data:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
hostPath: /mnt/MainPool/Kubernetes/cdn/data
|
||||
globalMounts:
|
||||
- path: /data
|
||||
readOnly: true
|
||||
mountPath: /data
|
||||
config:
|
||||
enabled: true
|
||||
type: configMap
|
||||
name: nginx-cdn-configmap
|
||||
|
||||
resources:
|
||||
requests:
|
||||
cpu: 1m
|
|
@ -30,7 +30,7 @@ spec:
|
|||
main:
|
||||
image:
|
||||
repository: matrixdotorg/dendrite-monolith
|
||||
tag: v0.13.8
|
||||
tag: v0.13.7
|
||||
|
||||
service:
|
||||
app:
|
||||
|
|
|
@ -26,21 +26,21 @@ spec:
|
|||
# fsGroup: 10000
|
||||
# fsGroupChangePolicy: OnRootMismatch
|
||||
|
||||
initContainers:
|
||||
copy-config:
|
||||
image:
|
||||
repository: alpine
|
||||
tag: 3.20
|
||||
|
||||
command: [ "sh", "-c", "cat /ganymede-config.json && cp -v /ganymede-config.json /data/config.json" ]
|
||||
|
||||
containers:
|
||||
api:
|
||||
image:
|
||||
repository: ghcr.io/zibbp/ganymede
|
||||
tag: 3.0.1
|
||||
|
||||
securityContext:
|
||||
#allowPrivilegeEscalation: false
|
||||
#capabilities: { drop: ["ALL"] }
|
||||
|
||||
env:
|
||||
- name: PUID
|
||||
value: 555
|
||||
- name: PGID
|
||||
value: 555
|
||||
- name: TZ
|
||||
value: "America/New_York" # Set to your timezone
|
||||
- name: DB_HOST
|
||||
|
@ -103,7 +103,7 @@ spec:
|
|||
frontend:
|
||||
image:
|
||||
repository: ghcr.io/zibbp/ganymede-frontend
|
||||
tag: 3.0.1
|
||||
tag: 3.0.0
|
||||
|
||||
env:
|
||||
- name: API_URL
|
||||
|
@ -124,10 +124,6 @@ spec:
|
|||
repository: nginxinc/nginx-unprivileged
|
||||
tag: 1.27.1-alpine
|
||||
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities: { drop: ["ALL"] }
|
||||
|
||||
service:
|
||||
app:
|
||||
controller: main
|
||||
|
@ -159,7 +155,7 @@ spec:
|
|||
service:
|
||||
identifier: app
|
||||
port: api
|
||||
- path: /data/videos
|
||||
- path: /vods
|
||||
service:
|
||||
identifier: app
|
||||
port: nginx
|
||||
|
@ -172,18 +168,18 @@ spec:
|
|||
storageClass: mainpool-hostpath
|
||||
accessMode: ReadWriteOnce
|
||||
globalMounts:
|
||||
- path: /data/videos
|
||||
- path: /vods
|
||||
|
||||
ganymede-data:
|
||||
type: persistentVolumeClaim
|
||||
size: 15Gi
|
||||
size: 5Gi
|
||||
retain: true
|
||||
storageClass: mainpool-hostpath
|
||||
accessMode: ReadWriteOnce
|
||||
advancedMounts:
|
||||
main: # controller name
|
||||
api: # container name
|
||||
- path: /data/temp
|
||||
- path: /data
|
||||
|
||||
ganymede-logs:
|
||||
type: persistentVolumeClaim
|
||||
|
@ -194,7 +190,7 @@ spec:
|
|||
advancedMounts:
|
||||
main: # controller name
|
||||
api: # container name
|
||||
- path: /data/logs
|
||||
- path: /logs
|
||||
|
||||
nginx-conf:
|
||||
name: ganymede-nginx-conf
|
||||
|
@ -203,8 +199,17 @@ spec:
|
|||
advancedMounts:
|
||||
main: # controller name
|
||||
nginx: # container name
|
||||
- path: /etc/nginx/nginx.conf
|
||||
subPath: nginx.conf
|
||||
- subPath: nginx.conf
|
||||
path: /etc/nginx/nginx.conf
|
||||
|
||||
ganymede-temp-conf:
|
||||
type: emptyDir
|
||||
advancedMounts:
|
||||
main: # controller name
|
||||
api: # container name
|
||||
- path: /data
|
||||
copy-config: # container name
|
||||
- path: /data
|
||||
|
||||
ganymede-conf:
|
||||
name: ganymede-conf
|
||||
|
@ -212,7 +217,6 @@ spec:
|
|||
defaultMode: 0777
|
||||
advancedMounts:
|
||||
main: # controller name
|
||||
api: # container name
|
||||
- path: /data/config/config.json
|
||||
subPath: config.json
|
||||
|
||||
copy-config: # container name
|
||||
- subPath: config.json
|
||||
path: /ganymede-config.json
|
||||
|
|
|
@ -26,16 +26,16 @@ data:
|
|||
|
||||
server {
|
||||
listen 8080;
|
||||
root /data/videos;
|
||||
root /vods;
|
||||
|
||||
add_header 'Access-Control-Allow-Origin' '*' always;
|
||||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
|
||||
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
|
||||
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
|
||||
|
||||
location ^~ /data/videos {
|
||||
location ^~ /vods {
|
||||
autoindex on;
|
||||
alias /data/videos;
|
||||
alias /vods;
|
||||
|
||||
location ~* \.(ico|css|js|gif|jpeg|jpg|png|svg|webp)$ {
|
||||
expires 30d;
|
||||
|
|
|
@ -22,7 +22,7 @@ spec:
|
|||
main:
|
||||
image:
|
||||
repository: temporalio/auto-setup
|
||||
tag: 1.25
|
||||
tag: 1.24
|
||||
|
||||
env:
|
||||
- name: DB
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: woodpecker
|
||||
version: "1.6.0"
|
||||
version: "1.5.1"
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: woodpecker-charts
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: ghcr.io/onedr0p/bazarr
|
||||
tag: "1.4.4"
|
||||
tag: "1.4.3"
|
||||
|
||||
env:
|
||||
TZ: America/New_York
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: ghcr.io/onedr0p/prowlarr-develop
|
||||
tag: "1.24.0.4721"
|
||||
tag: "1.21.2.4649"
|
||||
|
||||
# Metrics sidecar
|
||||
sidecars:
|
||||
|
|
|
@ -35,7 +35,7 @@ spec:
|
|||
|
||||
image:
|
||||
repository: bobokun/qbit_manage
|
||||
tag: "v4.1.9"
|
||||
tag: "v4.1.7"
|
||||
|
||||
env:
|
||||
QBT_STARTUP_DELAY: 45 # seconds
|
||||
|
|
|
@ -28,7 +28,7 @@ spec:
|
|||
app:
|
||||
image:
|
||||
repository: ghcr.io/onedr0p/qbittorrent
|
||||
tag: 4.6.7
|
||||
tag: 4.6.5
|
||||
|
||||
env:
|
||||
QBITTORRENT__PORT: 8080
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: ghcr.io/onedr0p/radarr-develop
|
||||
tag: "5.10.3.9178"
|
||||
tag: "5.10.0.9090"
|
||||
|
||||
# Metrics sidecar
|
||||
sidecars:
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: ghcr.io/onedr0p/sonarr-develop
|
||||
tag: "4.0.9.2386"
|
||||
tag: "4.0.9.2300"
|
||||
|
||||
# Metrics sidecar
|
||||
sidecars:
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: goofball222/factorio
|
||||
tag: "1.1.110"
|
||||
tag: "1.1.109"
|
||||
|
||||
service:
|
||||
main:
|
||||
|
|
|
@ -21,7 +21,7 @@ spec:
|
|||
# Add init container for pulling znc modules and putting them into the modules directory
|
||||
initContainers:
|
||||
pull-module-source:
|
||||
image: alpine:3.20.3
|
||||
image: alpine:3.20.2
|
||||
command:
|
||||
- "sh"
|
||||
- "-c"
|
||||
|
|
|
@ -23,7 +23,7 @@ spec:
|
|||
main:
|
||||
image:
|
||||
repository: ghcr.io/advplyr/audiobookshelf
|
||||
tag: 2.13.4
|
||||
tag: 2.13.2
|
||||
|
||||
service:
|
||||
app:
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: linuxserver/freshrss
|
||||
tag: "1.24.3"
|
||||
tag: "1.24.2"
|
||||
|
||||
env:
|
||||
PUID: 10000
|
||||
|
|
|
@ -22,7 +22,7 @@ spec:
|
|||
app:
|
||||
image:
|
||||
repository: linuxserver/jellyfin
|
||||
tag: 10.9.11
|
||||
tag: 10.9.10
|
||||
|
||||
env:
|
||||
PUID: 10000
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: gotson/komga
|
||||
tag: "1.13.0"
|
||||
tag: "1.12.0"
|
||||
|
||||
env:
|
||||
TZ: America/New_York
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: grafana
|
||||
version: "8.5.1"
|
||||
version: "8.5.0"
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: grafana-charts
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: kube-prometheus-stack
|
||||
version: "62.7.0"
|
||||
version: "62.3.1"
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: prometheus-community-charts
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: prompve/prometheus-pve-exporter
|
||||
tag: "3.4.5"
|
||||
tag: "3.4.4"
|
||||
|
||||
args:
|
||||
- --config.file
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: victoria-metrics-single
|
||||
version: 0.11.2
|
||||
version: 0.11.0
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: victoria-metrics-charts
|
||||
|
|
|
@ -8,7 +8,7 @@ spec:
|
|||
chart:
|
||||
spec:
|
||||
chart: longhorn
|
||||
version: "1.7.1"
|
||||
version: "1.7.0"
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: longhorn-charts
|
||||
|
|
|
@ -9,7 +9,7 @@ spec:
|
|||
url: https://github.com/traefik/traefik-helm-chart.git
|
||||
ref:
|
||||
# renovate: registryUrl=https://helm.traefik.io/traefik chart=traefik
|
||||
tag: v31.1.0
|
||||
tag: v30.1.0
|
||||
ignore: |
|
||||
# exclude all
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue