TrueChartsClone/charts/stable/transmission/values.yaml

123 lines
4.9 KiB
YAML
Raw Normal View History

image:
repository: tccr.io/truecharts/transmission
pullPolicy: IfNotPresent
tag: v3.00@sha256:cf61bde05f265653ce12b0ef42e25ac25abcc51ff84c9e5528ef75fea8330eda
fix(transmission,kms,sonarr,radarr): probe fixes (#7935) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes #7934 ⚒️ Fixes #7930 ⚒️ Fixes #7940 **⚙️ Type of change** - [ ] ⚙️ 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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 - [ ] ⬆️ 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._ --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-04-12 09:11:20 +00:00
feat(stable): BREAKING CHANGE migrate to new common part 1 (#7900) **Description** Part 1 of the migration to new common on the stable train. This basically breaks most/all charts requiring a reinstall on SCALE as well. Helm users shouldn't need a reinstall but could migrate their values.yaml modification manually besides backing-up and porting the databases. There be Dragons basically, as we obviously cannot 100% go over each-and-every single app in the stable train like we did in the enterprise train. **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [x] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [x] 🔃 Refactor of current code **🧪 How Has This Been Tested?** Via CI and manually validation in a lot of cases where the CI did not correctly check things. Additional catalog item creation tooling for local testing has been added as well. **📃 Notes:** There will be issues in the future but we should get as much working well as we can. **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [x] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [x] 🧪 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._
2023-04-11 10:07:17 +00:00
workload:
main:
podSpec:
containers:
main:
fix(transmission,kms,sonarr,radarr): probe fixes (#7935) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes #7934 ⚒️ Fixes #7930 ⚒️ Fixes #7940 **⚙️ Type of change** - [ ] ⚙️ 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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 - [ ] ⬆️ 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._ --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-04-12 09:11:20 +00:00
probes:
liveness:
type: http
path: "{{ .Values.workload.main.podSpec.containers.main.env.TRANSMISSION__RPC_URL }}"
startup:
type: http
path: "{{ .Values.workload.main.podSpec.containers.main.env.TRANSMISSION__RPC_URL }}"
readiness:
type: http
path: "{{ .Values.workload.main.podSpec.containers.main.env.TRANSMISSION__RPC_URL }}"
feat(stable): BREAKING CHANGE migrate to new common part 1 (#7900) **Description** Part 1 of the migration to new common on the stable train. This basically breaks most/all charts requiring a reinstall on SCALE as well. Helm users shouldn't need a reinstall but could migrate their values.yaml modification manually besides backing-up and porting the databases. There be Dragons basically, as we obviously cannot 100% go over each-and-every single app in the stable train like we did in the enterprise train. **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [x] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [x] 🔃 Refactor of current code **🧪 How Has This Been Tested?** Via CI and manually validation in a lot of cases where the CI did not correctly check things. Additional catalog item creation tooling for local testing has been added as well. **📃 Notes:** There will be issues in the future but we should get as much working well as we can. **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [x] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [x] 🧪 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._
2023-04-11 10:07:17 +00:00
env:
# PUID: 1001
fix(transmission,kms,sonarr,radarr): probe fixes (#7935) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes #7934 ⚒️ Fixes #7930 ⚒️ Fixes #7940 **⚙️ Type of change** - [ ] ⚙️ 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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 - [ ] ⬆️ 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._ --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-04-12 09:11:20 +00:00
# URL is set here so it wont be able to get overwritten by the user
# as this will break the probes, if the need arises we can expose it.
TRANSMISSION__RPC_URL: "/transmission"
# TRANSMISSION_RPC_USERNAME: ""
# TRANSMISSION_RPC_PASSWORD: ""
# TRANSMISSION_RPC_AUTHENTICATION_REQUIRED: false
feat(stable): BREAKING CHANGE migrate to new common part 1 (#7900) **Description** Part 1 of the migration to new common on the stable train. This basically breaks most/all charts requiring a reinstall on SCALE as well. Helm users shouldn't need a reinstall but could migrate their values.yaml modification manually besides backing-up and porting the databases. There be Dragons basically, as we obviously cannot 100% go over each-and-every single app in the stable train like we did in the enterprise train. **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [x] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [x] 🔃 Refactor of current code **🧪 How Has This Been Tested?** Via CI and manually validation in a lot of cases where the CI did not correctly check things. Additional catalog item creation tooling for local testing has been added as well. **📃 Notes:** There will be issues in the future but we should get as much working well as we can. **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [x] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [x] 🧪 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._
2023-04-11 10:07:17 +00:00
# TRANSMISSION_ALT_SPEED_DOWN: 50
# TRANSMISSION_ALT_SPEED_ENABLED: false
# TRANSMISSION_ALT_SPEED_TIME_BEGIN: 540
# TRANSMISSION_ALT_SPEED_TIME_DAY: 127
# TRANSMISSION_ALT_SPEED_TIME_ENABLED: false
# TRANSMISSION_ALT_SPEED_TIME_END: 1020
# TRANSMISSION_ALT_SPEED_UP: 50
# TRANSMISSION_BIND_ADDRESS_IPV4: "0.0.0.0"
# TRANSMISSION_BIND_ADDRESS_IPV6: "::"
# TRANSMISSION_BLOCKLIST_ENABLED: true
# TRANSMISSION_BLOCKLIST_URL: "http://john.bitsurge.net/public/biglist.p2p.gz"
# TRANSMISSION_CACHE_SIZE_MB: 4
# TRANSMISSION_DHT_ENABLED: true
# TRANSMISSION_DOWNLOAD_DIR: "/downloads/complete"
# TRANSMISSION_DOWNLOAD_QUEUE_ENABLED: true
# TRANSMISSION_DOWNLOAD_QUEUE_SIZE: 5
# TRANSMISSION_ENCRYPTION: 1
# TRANSMISSION_IDLE_SEEDING_LIMIT: 30
# TRANSMISSION_IDLE_SEEDING_LIMIT_ENABLED: false
# TRANSMISSION_INCOMPLETE_DIR: "/downloads/incomplete"
# TRANSMISSION_INCOMPLETE_DIR_ENABLED: true
# TRANSMISSION_LPD_ENABLED: false
# TRANSMISSION_MESSAGE_LEVEL: 2
# TRANSMISSION_PEER_CONGESTION_ALGORITHM: ""
# TRANSMISSION_PEER_ID_TTL_HOURS: 6
# TRANSMISSION_PEER_LIMIT_GLOBAL: 200
# TRANSMISSION_PEER_LIMIT_PER_TORRENT: 50
TRANSMISSION_PEER_PORT: "{{ .Values.service.torrent.ports.torrent.port }}"
# TRANSMISSION_PEER_PORT_RANDOM_HIGH: 65535
# TRANSMISSION_PEER_PORT_RANDOM_LOW: 49152
# TRANSMISSION_PEER_PORT_RANDOM_ON_START: false
# TRANSMISSION_PEER_SOCKET_TOS: default"
# TRANSMISSION_PEX_ENABLED: true
# TRANSMISSION_PORT_FORWARDING_ENABLED: false
# TRANSMISSION_PREALLOCATION: 1
# TRANSMISSION_PREFETCH_ENABLED: true
# TRANSMISSION_QUEUE_STALLED_ENABLED: true
# TRANSMISSION_QUEUE_STALLED_MINUTES: 30
# TRANSMISSION_RATIO_LIMIT: 2
# TRANSMISSION_RATIO_LIMIT_ENABLED: false
# TRANSMISSION_RENAME_PARTIAL_FILES: true
# TRANSMISSION_RPC_BIND_ADDRESS: "0.0.0.0"
# TRANSMISSION_RPC_ENABLED: true
# TRANSMISSION_RPC_HOST_WHITELIST: ""
# TRANSMISSION_RPC_HOST_WHITELIST_ENABLED: false
TRANSMISSION_RPC_PORT: "{{ .Values.service.main.ports.main.port }}"
# TRANSMISSION_RPC_URL: "/transmission/"
# TRANSMISSION_RPC_WHITELIST: ""
# TRANSMISSION_RPC_WHITELIST_ENABLED: false
# TRANSMISSION_SCRAPE_PAUSED_TORRENTS_ENABLED: true
# TRANSMISSION_SCRIPT_TORRENT_DONE_ENABLED: false
# TRANSMISSION_SCRIPT_TORRENT_DONE_FILENAME: ""
# TRANSMISSION_SEED_QUEUE_ENABLED: false
# TRANSMISSION_SEED_QUEUE_SIZE: 10
# TRANSMISSION_SPEED_LIMIT_DOWN: 100
# TRANSMISSION_SPEED_LIMIT_DOWN_ENABLED: false
# TRANSMISSION_SPEED_LIMIT_UP: 100
# TRANSMISSION_SPEED_LIMIT_UP_ENABLED: false
# TRANSMISSION_START_ADDED_TORRENTS: true
# TRANSMISSION_TRASH_ORIGINAL_TORRENT_FILES: false
# TRANSMISSION_UMASK: 2
# TRANSMISSION_UPLOAD_SLOTS_PER_TORRENT: 14
# TRANSMISSION_UTP_ENABLED: true
# TRANSMISSION_WATCH_DIR: "/watch"
# TRANSMISSION_WATCH_DIR_ENABLED: false
fix(transmission,kms,sonarr,radarr): probe fixes (#7935) **Description** <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> ⚒️ Fixes #7934 ⚒️ Fixes #7930 ⚒️ Fixes #7940 **⚙️ Type of change** - [ ] ⚙️ 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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 - [ ] ⬆️ 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._ --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-04-12 09:11:20 +00:00
persistence:
config:
enabled: true
mountPath: "/config"
service:
main:
ports:
main:
port: 10109
targetPort: 9091
torrent:
enabled: true
ports:
torrent:
enabled: true
port: 51414
protocol: tcp
torrentudp:
enabled: true
port: 51414
protocol: udp
portal:
open:
enabled: true
manifestManager:
enabled: false