diff --git a/community/deluge/1.0.5/Chart.lock b/community/deluge/1.0.6/Chart.lock similarity index 100% rename from community/deluge/1.0.5/Chart.lock rename to community/deluge/1.0.6/Chart.lock diff --git a/community/deluge/1.0.5/Chart.yaml b/community/deluge/1.0.6/Chart.yaml similarity index 97% rename from community/deluge/1.0.5/Chart.yaml rename to community/deluge/1.0.6/Chart.yaml index 0309a8bdc7..c2d121c58d 100644 --- a/community/deluge/1.0.5/Chart.yaml +++ b/community/deluge/1.0.6/Chart.yaml @@ -3,7 +3,7 @@ description: Deluge is a lightweight, Free Software, cross-platform BitTorrent c annotations: title: Deluge type: application -version: 1.0.5 +version: 1.0.6 apiVersion: v2 appVersion: '9.5.3' kubeVersion: '>=1.16.0-0' diff --git a/community/deluge/1.0.5/README.md b/community/deluge/1.0.6/README.md similarity index 100% rename from community/deluge/1.0.5/README.md rename to community/deluge/1.0.6/README.md diff --git a/community/deluge/1.0.5/app-readme.md b/community/deluge/1.0.6/app-readme.md similarity index 100% rename from community/deluge/1.0.5/app-readme.md rename to community/deluge/1.0.6/app-readme.md diff --git a/community/deluge/1.0.5/charts/common-1.0.12.tgz b/community/deluge/1.0.6/charts/common-1.0.12.tgz similarity index 100% rename from community/deluge/1.0.5/charts/common-1.0.12.tgz rename to community/deluge/1.0.6/charts/common-1.0.12.tgz diff --git a/community/deluge/1.0.5/ci/basic-values.yaml b/community/deluge/1.0.6/ci/basic-values.yaml similarity index 75% rename from community/deluge/1.0.5/ci/basic-values.yaml rename to community/deluge/1.0.6/ci/basic-values.yaml index 43924ebd3b..fde461eb03 100644 --- a/community/deluge/1.0.5/ci/basic-values.yaml +++ b/community/deluge/1.0.6/ci/basic-values.yaml @@ -5,3 +5,7 @@ delugeStorage: downloads: type: hostPath hostPath: /mnt/{{ .Release.Name }}/downloads + +delugeNetwork: + exposeDaemon: true + daemonPort: 32100 diff --git a/community/deluge/1.0.5/ci/hostnet-values.yaml b/community/deluge/1.0.6/ci/hostnet-values.yaml similarity index 100% rename from community/deluge/1.0.5/ci/hostnet-values.yaml rename to community/deluge/1.0.6/ci/hostnet-values.yaml diff --git a/community/deluge/1.0.5/ix_values.yaml b/community/deluge/1.0.6/ix_values.yaml similarity index 92% rename from community/deluge/1.0.5/ix_values.yaml rename to community/deluge/1.0.6/ix_values.yaml index 6835c6ea15..e738a03b3e 100644 --- a/community/deluge/1.0.5/ix_values.yaml +++ b/community/deluge/1.0.6/ix_values.yaml @@ -15,6 +15,8 @@ delugeNetwork: hostNetwork: false webPort: 30038 torrentPort: 30039 + exposeDaemon: false + daemonPort: 58846 delugeID: user: 568 diff --git a/community/deluge/1.0.5/metadata.yaml b/community/deluge/1.0.6/metadata.yaml similarity index 100% rename from community/deluge/1.0.5/metadata.yaml rename to community/deluge/1.0.6/metadata.yaml diff --git a/community/deluge/1.0.5/questions.yaml b/community/deluge/1.0.6/questions.yaml similarity index 94% rename from community/deluge/1.0.5/questions.yaml rename to community/deluge/1.0.6/questions.yaml index 14a02cd10e..b4eed994d1 100644 --- a/community/deluge/1.0.5/questions.yaml +++ b/community/deluge/1.0.6/questions.yaml @@ -106,6 +106,25 @@ questions: min: 9000 max: 65535 required: true + - variable: exposeDaemon + label: Expose Daemon Port + description: Expose the Deluge Daemon port + schema: + type: boolean + default: false + show_if: [["hostNetwork", "=", false]] + - variable: daemonPort + label: Daemon Port + description: | + The port for the Deluge Daemon.
+ (Internal port is always 58846) + schema: + type: int + show_if: [["exposeDaemon", "=", true]] + default: 58846 + min: 9000 + max: 65535 + required: true - variable: torrentPort label: Torrent Port description: | diff --git a/community/deluge/1.0.5/templates/NOTES.txt b/community/deluge/1.0.6/templates/NOTES.txt similarity index 100% rename from community/deluge/1.0.5/templates/NOTES.txt rename to community/deluge/1.0.6/templates/NOTES.txt diff --git a/community/deluge/1.0.5/templates/_deluge.tpl b/community/deluge/1.0.6/templates/_deluge.tpl similarity index 92% rename from community/deluge/1.0.5/templates/_deluge.tpl rename to community/deluge/1.0.6/templates/_deluge.tpl index b0d310cfd1..1cda1063d3 100644 --- a/community/deluge/1.0.5/templates/_deluge.tpl +++ b/community/deluge/1.0.6/templates/_deluge.tpl @@ -64,6 +64,14 @@ service: nodePort: {{ .Values.delugeNetwork.webPort }} targetPort: 8112 targetSelector: deluge + {{- if .Values.delugeNetwork.exposeDaemon }} + daemon: + enabled: true + port: {{ .Values.delugeNetwork.daemonPort }} + nodePort: {{ .Values.delugeNetwork.daemonPort }} + targetPort: 58846 + targetSelector: deluge + {{- end }} torrent: enabled: true type: NodePort diff --git a/community/deluge/1.0.5/templates/_portal.tpl b/community/deluge/1.0.6/templates/_portal.tpl similarity index 100% rename from community/deluge/1.0.5/templates/_portal.tpl rename to community/deluge/1.0.6/templates/_portal.tpl diff --git a/community/deluge/1.0.5/templates/common.yaml b/community/deluge/1.0.6/templates/common.yaml similarity index 100% rename from community/deluge/1.0.5/templates/common.yaml rename to community/deluge/1.0.6/templates/common.yaml