Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-09-03 23:06:11 +00:00
parent da49bb96a1
commit 00cd43b009
12 changed files with 1918 additions and 0 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [plex-playlist-sync-0.0.1]plex-playlist-sync-0.0.1 (2023-09-03)

View File

@ -0,0 +1,36 @@
apiVersion: v2
appVersion: "latest"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.1
deprecated: false
description: Sync your Spotify and Deezer playlists to your Plex server.
home: https://truecharts.org/charts/incubator/plex-playlist-sync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-playlist-sync.png
keywords:
- plex-playlist-sync
- Spotify
- Deezer
- Tools-Utilities
- MediaApp-Other
- MediaApp-Video
- MediaServer-Video
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: plex-playlist-sync
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/plex-playlist-sync
- https://github.com/rnagabhyrava/plex-playlist-sync
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- Tools-Utilities
- MediaApp-Other
- MediaApp-Video
- MediaServer-Video
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,4 @@
## [plex-playlist-sync-0.0.1]plex-playlist-sync-0.0.1 (2023-09-03)

View File

@ -0,0 +1,8 @@
Sync your Spotify and Deezer playlists to your Plex server.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/plex-playlist-sync](https://truecharts.org/charts/incubator/plex-playlist-sync)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

View File

@ -0,0 +1,73 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/plex-playlist-sync
tag: latest@sha256:82e3431659be3ac051715e1e63e79780cb0b8ff105bd6cc427f4e21cd4b2b58d
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsGroup: 0
runAsUser: 0
service:
main:
enabled: false
ports:
main:
enabled: false
pps:
plex:
url: "http://localhost:32400"
token: "plextoken123"
spotify:
user_id: ""
client_id: ""
client_secret: ""
deezer:
user_id: ""
playlist_id: []
other:
write_missing_as_csv: false
append_service_suffix: true
add_playlist_poster: true
add_playlist_description: true
append_instead_of_sync: false
seconds_to_wait: 84000
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
env:
PLEX_URL: "{{ .Values.pps.plex.url }}"
PLEX_TOKEN: "{{ .Values.pps.plex.token }}"
SPOTIFY_USER_ID: "{{ .Values.pps.spotify.user_id }}"
SPOTIFY_CLIENT_ID: "{{ .Values.pps.spotify.client_id }}"
SPOTIFY_CLIENT_SECRET: "{{ .Values.pps.spotify.client_secret }}"
DEEZER_USER_ID: "{{ .Values.pps.deezer.user_id }}"
DEEZER_PLAYLIST_ID: '{{ join " " .Values.pps.deezer.playlist_id }}'
WRITE_MISSING_AS_CSV: "{{ .Values.pps.other.write_missing_as_csv }}"
APPEND_SERVICE_SUFFIX: "{{ .Values.pps.other.append_service_suffix }}"
ADD_PLAYLIST_POSTER: "{{ .Values.pps.other.add_playlist_poster }}"
ADD_PLAYLIST_DESCRIPTION: "{{ .Values.pps.other.add_playlist_description }}"
APPEND_INSTEAD_OF_SYNC: "{{ .Values.pps.other.append_instead_of_sync }}"
SECONDS_TO_WAIT: "{{ .Values.pps.other.seconds_to_wait }}"
persistence:
data:
enabled: true
mountPath: /data
portal:
open:
enabled: false

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,2 @@
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.all" . }}

View File

@ -0,0 +1,8 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/plex-playlist-sync.png
categories:
- Tools-Utilities
- MediaApp-Other
- MediaApp-Video
- MediaServer-Video
screenshots: []