Skip to content

Commit

Permalink
feat(threadfin) add threadfin (#29832)
Browse files Browse the repository at this point in the history
**Description**
M3U Proxy for Plex DVR and Emby/Jellyfin Live TV. Based on xTeVe.
<!--
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  # <!--(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
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

**➕ 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._

---------

Signed-off-by: Addison McDermid <admin@itconstruct.com.au>
  • Loading branch information
itconstruct authored Dec 23, 2024
1 parent 4005a1c commit 99abe3d
Show file tree
Hide file tree
Showing 8 changed files with 101 additions and 0 deletions.
32 changes: 32 additions & 0 deletions charts/incubator/threadfin/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# OWNERS file for Kubernetes
OWNERS
# helm-docs templates
*.gotmpl
# docs folder
/docs
# icon
icon.png
icon.webp
icon-small.webp
4 changes: 4 additions & 0 deletions charts/incubator/threadfin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Changelog
pagefind: false
---
40 changes: 40 additions & 0 deletions charts/incubator/threadfin/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
annotations:
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/category: media
truecharts.org/max_helm_version: "3.15"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: incubator
apiVersion: v2
appVersion: main
dependencies:
- name: common
version: 25.1.7
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
deprecated: false
description: M3U Proxy for Plex DVR and Emby/Jellyfin Live TV. Based on xTeVe.
home: https://truecharts.org/charts/incubator/threadfin
icon: https://truecharts.org/img/hotlink-ok/chart-icons/threadfin.webp
keywords:
- threadfin
- xteve
- iptv
- plex
- emby
- jellyfin
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
name: threadfin
sources:
- https://hub.docker.com/r/fyb3roptik/threadfin
- https://github.com/truecharts/charts/tree/master/charts/incubator/threadfin
- https://github.com/Threadfin/Threadfin
type: application
version: 0.0.1
3 changes: 3 additions & 0 deletions charts/incubator/threadfin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: README
---
Binary file added charts/incubator/threadfin/icon.webp
Binary file not shown.
1 change: 1 addition & 0 deletions charts/incubator/threadfin/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}
1 change: 1 addition & 0 deletions charts/incubator/threadfin/templates/common.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ include "tc.v1.common.loader.all" . }}
20 changes: 20 additions & 0 deletions charts/incubator/threadfin/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
image:
repository: fyb3roptik/threadfin
tag: v1.2.21@sha256:53d7efb4dcc3cc70b35073091dee6f6e30432a9e5e1ba1d5a8cbe9a9f898c327
pullPolicy: IfNotPresent
service:
main:
ports:
main:
port: 34400
persistence:
config:
enabled: true
mountPath: "/home/threadfin/conf"
temp:
enabled: true
mountPath: "/tmp/threadfin"
type: emptyDir
portal:
open:
enabled: true

0 comments on commit 99abe3d

Please sign in to comment.