Skip to content

Commit

Permalink
Kaizoku with empty vars.common
Browse files Browse the repository at this point in the history
  • Loading branch information
LarryGF committed Oct 25, 2023
1 parent 2ba3d3d commit 71c74f5
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 69 deletions.
35 changes: 0 additions & 35 deletions argocd/kaizoku/values.common.yaml
Original file line number Diff line number Diff line change
@@ -1,35 +0,0 @@
app-template:
controllers:
main:
containers:
main:
image:
repository: ghcr.io/oae/kaizoku
tag: 1.6.1
pullPolicy: IfNotPresent

# -- environment variables.
# See [image docs](https://github.com/dani-garcia/vaultwarden/blob/main/.env.template) for more details.
env:
# -- Config dir
DATA_FOLDER: "config"

db:
image:
repository: postgres
tag: alpine
pullPolicy: IfNotPresent

# -- environment variables.
# See [image docs](https://github.com/dani-garcia/vaultwarden/blob/main/.env.template) for more details.
env:
# -- Config dir
POSTGRES_USER: kaizoku
POSTGRES_DB: kaizoku
POSTGRES_PASSWORD: kaizoku

redis:
image:
repository: redis
tag: 7-alpine
pullPolicy: IfNotPresent
Original file line number Diff line number Diff line change
@@ -1,45 +1,51 @@
app-template:
defaultPodOptions:
securityContext:
runAsUser: 568
runAsGroup: 568
fsGroup: 568
fsGroupChangePolicy: "OnRootMismatch"
supplementalGroups:
- 65539

controllers:
main:
containers:
main:
image:
repository: ghcr.io/onedr0p/sabnzbd
tag: latest
pullPolicy: IfNotPresent

probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false

# -- Configures service settings for the chart.
service:
main:
ports:
http:
port: 3000
# websocket:
# enabled: true
# port: 3012
port: 8080

# ingress:
# # -- Enable and configure ingress settings for the chart under this key.
# main:
# enabled: true
# hosts:
# - host: chart-example.local
# paths:
# - path: /
# pathType: Prefix
# service:
# name: main
# port: http
# - path: /notifications/hub/negotiate
# pathType: Prefix
# service:
# name: main
# port: http
# - path: /notifications/hub
# pathType: Prefix
# service:
# name: main
# port: websocket
ingress:
media:
enabled: false
className: "ingress-nginx"
hosts:
- host: sabnzbd.bjw-s.dev
paths:
- path: /
service:
name: main
port: http

# # -- Configure persistence settings for the chart under this key.
persistence:
config:
enabled: true
type: persistentVolumeClaim
accessMode: ReadWriteOnce
size: 1Gi
mountPath: /config
enabled: false
# media:
# existingClaim: nas-media
# globalMounts:
# - path: /data/nas-media

0 comments on commit 71c74f5

Please sign in to comment.