-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
74 changes: 40 additions & 34 deletions
74
terraform/modules/argocd_application/applications/kaizoku/values.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |