fb8e40c18b
* Refactor Ingress and Add Tests * New HTTP Ingress UI Layout * Cleanup plain TCP and all UDP ingress UI's * Bulk Traefik Changes: - update traefik - move storage to common chart - Remove reflector - Remove Cert-Manager - Add http IngressRoute to common - remove ingress(Route) from traefik - Cleanup Ingress(Route) to be includable in other charts * Update common included with all Apps * Update traefik and addserviceName, servicePort and serviceKind to questions.yaml * Polish: Auto find port and servicename for ingress, allow override * Add basic documentation and examples * Cleanup * small bugfix * fix mini mistake in qbittorrent * Use default torrent port within qbittorrent
111 lines
2.5 KiB
YAML
111 lines
2.5 KiB
YAML
# Default values for qbittorrent.
|
|
|
|
image:
|
|
repository: linuxserver/qbittorrent
|
|
pullPolicy: IfNotPresent
|
|
tag: version-4.3.0202010181232-7086-1c663adeeubuntu18.04.1
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
env: {}
|
|
# TZ: UTC
|
|
# PUID: 1001
|
|
# PGID: 1001
|
|
# UMASK: 022
|
|
|
|
services:
|
|
main:
|
|
port:
|
|
port: 8080
|
|
tcp:
|
|
enabled: true
|
|
type: ClusterIP
|
|
port:
|
|
port: 6881
|
|
protocol: TCP
|
|
targetPort: 51413
|
|
udp:
|
|
enabled: true
|
|
type: ClusterIP
|
|
port:
|
|
port: 6881
|
|
protocol: UDP
|
|
targetPort: 51413
|
|
|
|
|
|
persistence:
|
|
config:
|
|
enabled: false
|
|
emptyDir: false
|
|
|
|
media:
|
|
enabled: false
|
|
emptyDir: false
|
|
mountPath: /media
|
|
## Persistent Volume Storage Class
|
|
## If defined, storageClassName: <storageClass>
|
|
## If set to "-", storageClassName: "", which disables dynamic provisioning
|
|
## If undefined (the default) or set to null, no storageClassName spec is
|
|
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
|
## GKE, AWS & OpenStack)
|
|
# storageClass: "-"
|
|
# accessMode: ReadWriteOnce
|
|
# size: 1Gi
|
|
## Do not delete the pvc upon helm uninstall
|
|
# skipuninstall: false
|
|
# existingClaim: ""
|
|
|
|
downloads:
|
|
enabled: false
|
|
emptyDir: false
|
|
mountPath: /downloads
|
|
## Persistent Volume Storage Class
|
|
## If defined, storageClassName: <storageClass>
|
|
## If set to "-", storageClassName: "", which disables dynamic provisioning
|
|
## If undefined (the default) or set to null, no storageClassName spec is
|
|
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
|
## GKE, AWS & OpenStack)
|
|
# storageClass: "-"
|
|
# accessMode: ReadWriteOnce
|
|
# size: 1Gi
|
|
## Do not delete the pvc upon helm uninstall
|
|
# skipuninstall: false
|
|
# existingClaim: ""
|
|
|
|
additionalVolumes:
|
|
- name: qbittorrent-scripts
|
|
emptyDir: {}
|
|
## When you want to enable automatic port configuration at startup, adjust this to:
|
|
# configMap:
|
|
# name: <RELEASENAME>-scripts
|
|
# defaultMode: 511
|
|
|
|
additionalVolumeMounts:
|
|
- mountPath: /config/custom-cont-init.d
|
|
name: qbittorrent-scripts
|
|
|
|
|
|
|
|
|
|
appVolumeMounts:
|
|
config:
|
|
enabled: true
|
|
emptyDir: true
|
|
setPermissions: true
|
|
mountPath: "/config"
|
|
media:
|
|
enabled: true
|
|
emptyDir: true
|
|
setPermissions: true
|
|
mountPath: "/media"
|
|
downloads:
|
|
enabled: true
|
|
emptyDir: true
|
|
setPermissions: true
|
|
mountPath: "/downloads"
|
|
|
|
|
|
appAdditionalServicesEnabled: true
|
|
appAdditionalServices:
|