diff --git a/charts/incubator/tracearr/.helmignore b/charts/incubator/tracearr/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/incubator/tracearr/.helmignore @@ -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 diff --git a/charts/incubator/tracearr/CHANGELOG.md b/charts/incubator/tracearr/CHANGELOG.md new file mode 100644 index 00000000000..f3e8318aa10 --- /dev/null +++ b/charts/incubator/tracearr/CHANGELOG.md @@ -0,0 +1,4 @@ +--- +title: Changelog +pagefind: false +--- diff --git a/charts/incubator/tracearr/Chart.yaml b/charts/incubator/tracearr/Chart.yaml new file mode 100644 index 00000000000..87a8b6ac90b --- /dev/null +++ b/charts/incubator/tracearr/Chart.yaml @@ -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 diff --git a/charts/incubator/tracearr/README.md b/charts/incubator/tracearr/README.md new file mode 100644 index 00000000000..2b8cc49d247 --- /dev/null +++ b/charts/incubator/tracearr/README.md @@ -0,0 +1,3 @@ +--- +title: README +--- diff --git a/charts/incubator/tracearr/icon-small.webp b/charts/incubator/tracearr/icon-small.webp new file mode 100644 index 00000000000..e01d66ff9e6 Binary files /dev/null and b/charts/incubator/tracearr/icon-small.webp differ diff --git a/charts/incubator/tracearr/icon.webp b/charts/incubator/tracearr/icon.webp new file mode 100644 index 00000000000..3fc054c7fca Binary files /dev/null and b/charts/incubator/tracearr/icon.webp differ diff --git a/charts/incubator/tracearr/templates/NOTES.txt b/charts/incubator/tracearr/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/tracearr/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/tracearr/templates/common.yaml b/charts/incubator/tracearr/templates/common.yaml new file mode 100644 index 00000000000..b51394e00a4 --- /dev/null +++ b/charts/incubator/tracearr/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/tracearr/values.yaml b/charts/incubator/tracearr/values.yaml new file mode 100644 index 00000000000..8113032a973 --- /dev/null +++ b/charts/incubator/tracearr/values.yaml @@ -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