feat(deluge) add rpc port to deluge (#17053)

**Description**
Add the RPC port to deluge.
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [X] ⚙️ Feature/App addition
- [ ] 🪛 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 opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ 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-01-09 13:09:26 -05:00
committed by GitHub
parent e8e3eade2e
commit a918100942
2 changed files with 29 additions and 1 deletions
+22
View File
@@ -31,6 +31,28 @@ questions:
type: int
default: 8112
required: true
- variable: rpc
label: "RPC Service"
description: "RPC Service"
schema:
additional_attrs: true
type: dict
attrs:
# Include{serviceSelectorLoadBalancer}
# Include{serviceSelectorExtras}
- variable: rpc
label: "RPC Service Port Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: port
label: "Port"
description: "This port exposes the container port on the service"
schema:
type: int
default: 58846
required: true
- variable: torrent
label: "TCP Torrent Service"
description: "TCP Torrent Service"
+7 -1
View File
@@ -14,6 +14,13 @@ service:
main:
port: 8112
targetPort: 8112
rpc:
enabled: true
ports:
rpc:
enabled: true
port: 58846
targetPort: 58846
torrent:
enabled: true
ports:
@@ -44,7 +51,6 @@ workload:
startup:
type: http
path: /
env: {}
persistence:
config:
enabled: true