mirror of
https://github.com/nold360/hive-apps
synced 2024-11-16 02:29:34 +00:00
Add: Arrstack
This commit is contained in:
parent
eab542cce4
commit
f41d7cc028
9 changed files with 260 additions and 0 deletions
57
projects/arrstack/project.yaml
Normal file
57
projects/arrstack/project.yaml
Normal file
|
@ -0,0 +1,57 @@
|
|||
config:
|
||||
description: Arrr I'm a pirate!
|
||||
syncWave: 100
|
||||
repo: k8s-at-home
|
||||
|
||||
apps:
|
||||
- name: ombi
|
||||
namespace: ombi
|
||||
chart: ombi
|
||||
targetRevision: 11.0.1
|
||||
|
||||
- name: jackett
|
||||
namespace: jackett
|
||||
chart: jackett
|
||||
targetRevision: 11.1.1
|
||||
include:
|
||||
- noRoot
|
||||
- tmpdirs
|
||||
|
||||
- name: sonarr
|
||||
namespace: sonarr
|
||||
chart: sonarr
|
||||
targetRevision: 15.1.0
|
||||
include:
|
||||
- noRoot
|
||||
- tmpdirs
|
||||
|
||||
- name: radarr
|
||||
namespace: radarr
|
||||
chart: radarr
|
||||
targetRevision: 15.0.3
|
||||
include:
|
||||
- noRoot
|
||||
- tmpdirs
|
||||
|
||||
- name: lidarr
|
||||
namespace: lidarr
|
||||
chart: lidarr
|
||||
targetRevision: 13.0.3
|
||||
include:
|
||||
- noRoot
|
||||
- tmpdirs
|
||||
|
||||
- name: bazarr
|
||||
chart: bazarr
|
||||
targetRevision: 10.1.0
|
||||
include:
|
||||
- noRoot
|
||||
- tmpdirs
|
||||
|
||||
- name: unpackerr
|
||||
chart: unpackerr
|
||||
targetRevision: 5.0.1
|
||||
include:
|
||||
- noRoot
|
||||
- tmpdirs
|
||||
|
30
projects/arrstack/values/bazarr.yaml
Normal file
30
projects/arrstack/values/bazarr.yaml
Normal file
|
@ -0,0 +1,30 @@
|
|||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
hosts:
|
||||
- host: bazarr.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: bazarr-tls
|
||||
hosts:
|
||||
- bazarr.dc
|
||||
|
||||
securityContext:
|
||||
privileged: false
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
#mountPath: /downloads
|
||||
storageClass: local-path
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
media:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /media/
|
||||
hostPath: /data/media/
|
25
projects/arrstack/values/jackett.yaml
Normal file
25
projects/arrstack/values/jackett.yaml
Normal file
|
@ -0,0 +1,25 @@
|
|||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
hosts:
|
||||
- host: jackett.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: jackett-tls
|
||||
hosts:
|
||||
- jackett.dc
|
||||
|
||||
securityContext:
|
||||
privileged: false
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
#mountPath: /downloads
|
||||
storageClass: local-path
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
36
projects/arrstack/values/lidarr.yaml
Normal file
36
projects/arrstack/values/lidarr.yaml
Normal file
|
@ -0,0 +1,36 @@
|
|||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
hosts:
|
||||
- host: lidarr.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: lidarr-tls
|
||||
hosts:
|
||||
- lidarr.dc
|
||||
|
||||
securityContext:
|
||||
privileged: false
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
#mountPath: /downloads
|
||||
storageClass: local-path
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
media:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /music
|
||||
hostPath: /data/media/music
|
||||
downloads:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /downloads
|
||||
hostPath: /data/torrent
|
||||
|
22
projects/arrstack/values/ombi.yaml
Normal file
22
projects/arrstack/values/ombi.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
hosts:
|
||||
- host: ombi.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: ombi-tls
|
||||
hosts:
|
||||
- ombi.dc
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
#mountPath: /downloads
|
||||
storageClass: local-path
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
36
projects/arrstack/values/radarr.yaml
Normal file
36
projects/arrstack/values/radarr.yaml
Normal file
|
@ -0,0 +1,36 @@
|
|||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
hosts:
|
||||
- host: radarr.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: radarr-tls
|
||||
hosts:
|
||||
- radarr.dc
|
||||
|
||||
securityContext:
|
||||
privileged: false
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
#mountPath: /downloads
|
||||
storageClass: local-path
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
media:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /movies
|
||||
hostPath: /data/media/movies
|
||||
downloads:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /downloads
|
||||
hostPath: /data/torrent
|
||||
|
35
projects/arrstack/values/sonarr.yaml
Normal file
35
projects/arrstack/values/sonarr.yaml
Normal file
|
@ -0,0 +1,35 @@
|
|||
#image:
|
||||
# tag: version-3.0.6.1265
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
hosts:
|
||||
- host: sonarr.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: sonarr-tls
|
||||
hosts:
|
||||
- sonarr.dc
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
#mountPath: /downloads
|
||||
storageClass: local-path
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
||||
media:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /tvshows
|
||||
hostPath: /data/media/tvshows
|
||||
downloads:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /downloads
|
||||
hostPath: /data/torrent
|
18
projects/arrstack/values/unpackerr.yaml
Normal file
18
projects/arrstack/values/unpackerr.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
env:
|
||||
UN_FOLDER_0_PATH: /downloads
|
||||
UN_FOLDER_0_DELETE_AFTER: "0"
|
||||
UN_FOLDER_0_MOVE_BACK: "true"
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: false
|
||||
|
||||
securityContext:
|
||||
privileged: false
|
||||
|
||||
persistence:
|
||||
downloads:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /downloads
|
||||
hostPath: /data/torrent/complete
|
|
@ -23,6 +23,7 @@ authentik:
|
|||
# -- Log level for server and worker
|
||||
log_level: info
|
||||
# -- Secret key used for cookie singing and unique user IDs,
|
||||
|
||||
# don't change this after the first install
|
||||
secret_key: ""
|
||||
# -- Path for the geoip database. If the file doesn't exist, GeoIP features are disabled.
|
||||
|
|
Loading…
Reference in a new issue