[deluge] Add DockerMods support

This commit is contained in:
2020-04-29 08:58:21 +01:00
parent 3a1405d14d
commit 0ab91c1e82
3 changed files with 13 additions and 4 deletions

View File

@@ -1,16 +1,17 @@
apiVersion: v1 apiVersion: v1
appVersion: 2.0.3-2201906121747ubuntu18.04.1-ls57
description: Deluge is a Python BitTorrent client based on libtorrent description: Deluge is a Python BitTorrent client based on libtorrent
name: deluge name: deluge
version: 1.0.1 version: 1.1.0
keywords: keywords:
- deluge - deluge
- libtorrent - libtorrent
home: https://github.com/nikdoof/home-k8s-flux/tree/master/charts/deluge home: https://github.com/nikdoof/helm-charts/charts/deluge
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/deluge-icon.png
sources: sources:
- https://hub.docker.com/r/linuxserver/deluge/ - https://hub.docker.com/r/linuxserver/deluge/
- https://github.com/janeczku/deluge - https://github.com/janeczku/deluge
dependencies: []
maintainers: maintainers:
- name: nikdoof - name: nikdoof
email: andy@tensixtyone.com email: andy@tensixtyone.com
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/deluge-icon.png
appVersion: 2.0.3-2201906121747ubuntu18.04.1-ls57

View File

@@ -70,6 +70,10 @@ spec:
value: "{{ .Values.puid }}" value: "{{ .Values.puid }}"
- name: PGID - name: PGID
value: "{{ .Values.pgid }}" value: "{{ .Values.pgid }}"
{{- if .values.dockerMods }}
- name: DOCKER_MODS
value: {{ .Values.dockerMods }}
{{- end }}
volumeMounts: volumeMounts:
- mountPath: /config - mountPath: /config
name: config name: config

View File

@@ -28,6 +28,10 @@ timezone: UTC
puid: 1001 puid: 1001
pgid: 1001 pgid: 1001
## Configure docker_mods for this container. (https://github.com/linuxserver/docker-mods)
##
# dockerMods: linuxserver/deluge:ssh
webuiservice: webuiservice:
type: ClusterIP type: ClusterIP
port: 8112 port: 8112