feat(tracearr) add tracearr (#43178)

**Description**
Add chart for tracearr, a streaming access manager for Plex, Jellyfin,
and Emby with account sharing detection.

⚒️ 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
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
Manually deployed with helm install

**📃 Notes:**
App optionally supports TimescaleDB, couldn't get that to work.

**✔️ 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 changes to the documentation
- [ ] 🧪 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):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

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

- [x] 🖼️ 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:
jogotcha
2025-12-27 21:41:32 +01:00
committed by GitHub
parent 23130d5064
commit 1e1d9528e3
9 changed files with 141 additions and 0 deletions
+32
View File
@@ -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
View File
@@ -0,0 +1,4 @@
---
title: Changelog
pagefind: false
---
+49
View File
@@ -0,0 +1,49 @@
annotations:
artifacthub.io/links: |-
- name: support
url: https://discord.com/invite/tVsPTHWTtr
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/category: media
truecharts.org/max_helm_version: "3.17"
truecharts.org/max_kubernetes_version: 1.32.0
truecharts.org/min_helm_version: "3.14"
truecharts.org/min_kubernetes_version: 1.24.0
truecharts.org/train: incubator
apiVersion: v2
appVersion: 1.3.9
dependencies:
- name: common
version: 28.29.17
repository: oci://oci.trueforge.org/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 17.15.7
repository: oci://oci.trueforge.org/truecharts
condition: redis.enabled
alias: ""
tags: []
import-values: []
deprecated: false
description: Streaming access manager for Plex, Jellyfin, and Emby with account sharing detection.
home: https://truecharts.org/charts/incubator/tracearr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tracearr.webp
keywords:
- tracearr
- media
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
name: tracearr
sources:
- https://github.com/connorgallopo/Tracearr
- https://github.com/connorgallopo/Tracearr/blob/main/docker/docker-compose.yml
- https://ghcr.io/connorgallopo/tracearr
- https://github.com/trueforge-org/truecharts/tree/master/charts/incubator/tracearr
type: application
version: 0.1.1
+3
View File
@@ -0,0 +1,3 @@
---
title: README
---
Binary file not shown.

After

Width:  |  Height:  |  Size: 796 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

@@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}
@@ -0,0 +1 @@
{{ include "tc.v1.common.loader.all" . }}
+51
View File
@@ -0,0 +1,51 @@
image:
repository: ghcr.io/connorgallopo/tracearr
pullPolicy: IfNotPresent
tag: 1.3.9@sha256:adca195a31deaa1286a50665ceda3252c83e9e0c90b0171dedda278cac71199a
securityContext:
container:
readOnlyRootFilesystem: false
service:
main:
ports:
main:
protocol: http
targetPort: 3000
port: 3000
cnpg:
main:
enabled: true
user: tracearr
database: tracearr
redis:
enabled: true
redisUsername: default
workload:
main:
podSpec:
containers:
main:
env:
PORT: "{{ .Values.service.main.ports.main.port }}"
JWT_SECRET: "changeme"
COOKIE_SECRET: "changeme"
# Optional MaxMind GeoIP license key
MAXMIND_LICENSE_KEY: ""
CORS_ORIGIN: "*"
LOG_LEVEL: info
# Enable reverse proxy support
TRUST_PROXY: true
DATABASE_URL:
secretKeyRef:
name: cnpg-main-urls
key: std
REDIS_URL:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: url