fix(deluge) fix deluge torrent service port (#17769)

**Description**
Fix and combine the tcp and udp port for deluge.
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [X] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [X] ⚖️ My code follows the style guidelines of this project
- [X] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [X] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
This commit is contained in:
Xstar97TheNoob 2024-02-03 05:30:42 -05:00 committed by GitHub
parent 2f3cdada82
commit 59b5556ae4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 8 deletions

View File

@ -35,4 +35,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/deluge
- https://ghcr.io/linuxserver/deluge
type: application
version: 17.1.12
version: 17.1.13

View File

@ -73,7 +73,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 51413
default: 6881
required: true
# Include{serviceExpertRoot}
# Include{serviceExpert}

View File

@ -26,15 +26,12 @@ service:
ports:
tcp:
enabled: true
port: 51413
targetPort: 51413
torrent-udp:
enabled: true
ports:
port: 6881
targetPort: 6881
udp:
enabled: true
port: "{{ .Values.service.torrent.ports.tcp.port }}"
targetPort: "{{ .Values.service.torrent.ports.tcp.port }}"
targetPort: "{{ .Values.service.torrent.ports.tcp.targetPort }}"
protocol: udp
workload:
main: