Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-08-29 17:25:19 +00:00
parent a27af75ae7
commit f0ba1753e3
26 changed files with 4273 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [plexanisync-3.0.4](https://github.com/truecharts/charts/compare/plexanisync-4.0.0...plexanisync-3.0.4) (2023-08-29)

View File

@@ -0,0 +1,30 @@
apiVersion: v2
appVersion: "1.3.25"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.3
deprecated: false
description: Plex to AniList Sync.
home: https://truecharts.org/charts/incubator/plexanisync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plexanisync.png
keywords:
- plexanisync
- media
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: plexanisync
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/plexanisync
- https://github.com/RickDB/PlexAniSync
- https://github.com/RickDB/PlexAniSync/pkgs/container/plexanisync
type: application
version: 3.0.4
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

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/incubator/)
**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 @@
## [plexanisync-3.0.4](https://github.com/truecharts/charts/compare/plexanisync-4.0.0...plexanisync-3.0.4) (2023-08-29)

View File

@@ -0,0 +1,8 @@
Plex to AniList Sync.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/plexanisync](https://truecharts.org/charts/stable/plexanisync)
---
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!

Binary file not shown.

View File

@@ -0,0 +1,87 @@
image:
repository: tccr.io/truecharts/plexanisync
pullPolicy: IfNotPresent
tag: v1.3.25@sha256:f9db346735f4e316b0c363d1bf73826daa7d5feafed20c2d73bdb732ff2c798c
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
plexanisync:
interval: 3600
plex:
anime_section:
[]
# - section1
# - section2
# direct | myplex
plex_auth_method: direct
# myplex
myplex_server: ""
myplex_user: ""
myplex_token: ""
# direct
plex_url: ""
plex_token: ""
# Home user sync
home_user_sync: false
home_username: ""
home_server_url: ""
anilist:
ani_username: ""
ani_token: ""
plex_ep_count_priority: false
skip_list_update: false
log_failed_matches: false
custom_mappings:
[]
# remote_urls:
# - https://blabal
# entries:
# - title: title
# seasons:
# - season: 1
# anilist_id: 2345
# synonyms:
# - asfdasd
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
envFrom:
- configMapRef:
name: config
service:
main:
enabled: false
ports:
main:
enabled: false
persistence:
settings:
enabled: true
type: secret
readOnly: true
defaultMode: "0600"
objectName: secret
mountPath: /plexanisync/settings.ini
subPath: settings.ini
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,7 @@
{{- define "plexanisync.config" -}}
{{- $pas := .Values.plexanisync }}
enabled: true
data:
SETTINGS_FILE: {{ .Values.persistence.settings.mountPath }}
INTERVAL: {{ $pas.interval | quote }}
{{- end -}}

View File

@@ -0,0 +1,68 @@
{{- define "plexanisync.secret" -}}
{{- $pas := .Values.plexanisync -}}
{{- $cm := .Values.custom_mappings }}
enabled: true
data:
settings.ini: |
[PLEX]
anime_section = {{ join "|" $pas.plex.anime_section }}
authentication_method = {{ $pas.plex.plex_auth_method }}
{{- if eq $pas.plex.plex_auth_method "direct" }}
base_url = {{ $pas.plex.plex_url }}
token = {{ $pas.plex.plex_token }}
{{- end }}
{{- if eq $pas.plex.plex_auth_method "myplex" }}
server = {{ $pas.plex.myplex_server_name }}
myplex_user = {{ $pas.plex.myplex_user }}
myplex_token = {{ $pas.plex.myplex_token }}
{{- end }}
home_user_sync = {{ ternary "True" "False" $pas.plex.home_user_sync }}
{{- if $pas.plex.home_user_sync }}
home_username = {{ $pas.plex.home_username }}
home_server_base_url = {{ $pas.plex.home_server_url }}
{{- end }}
[ANILIST]
access_token = {{ $pas.anilist.ani_token }}
plex_episode_count_priority = {{ ternary "True" "False" $pas.anilist.plex_ep_count_priority }}
skip_list_update = {{ ternary "True" "False" $pas.anilist.skip_list_update }}
username = {{ $pas.anilist.ani_username }}
log_failed_matches = {{ ternary "True" "False" $pas.anilist.log_failed_matches }}
custom_mappings.yaml: |
# https://github.com/RickDB/PlexAniSync/blob/master/custom_mappings.yaml.example
{{- if $cm }}
{{- with $cm.remote_urls }}
remote-urls:
{{- range $url := . }}
- {{ . | quote }}
{{- end }}
{{- end -}}
{{- with $cm.entries }}
entries:
{{- range $entry := . }}
- title: {{ $entry.title | quote }}
{{- with $entry.seasons }}
seasons:
{{- range $season_entry := . }}
- season: {{ $season_entry.season }}
anilist-id: {{ $season_entry.anilist_id }}
{{- end }}
{{- end -}}
{{- with $entry.synonyms }}
synonyms:
{{- range $synonym := . }}
- {{ . | quote }}
{{- end }}
{{- end }}
{{- end }}
{{- end -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,29 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{- $config := (include "plexanisync.config" . | fromYaml) }}
{{- if $config -}}
{{- $_ := set .Values.configmap "config" $config -}}
{{- end -}}
{{- $secret := (include "plexanisync.secret" . | fromYaml) }}
{{- if $secret -}}
{{- $_ := set .Values.secret "secret" $secret -}}
{{- end -}}
{{- define "plexanisync.custom.mappings" -}}
enabled: true
type: secret
readOnly: true
defaultMode: "0600"
objectName: secret
mountPath: /plexanisync/custom_mappings.yaml
subPath: custom_mappings.yaml
{{- end -}}
{{- if .Values.custom_mappings -}}
{{- $_ := set .Values.persistence "custommappings" (include "plexanisync.custom.mappings" . | fromYaml) -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

View File

@@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/plexanisync.png
categories:
- media
screenshots: []

View File

@@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [plexripper-4.0.6](https://github.com/truecharts/charts/compare/plexripper-5.0.0...plexripper-4.0.6) (2023-08-29)

View File

@@ -0,0 +1,40 @@
apiVersion: v2
appVersion: "0.14.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.3
deprecated: false
description: A multi-platform media downloader that indexes and downloads content from your accessible Plex servers.
home: https://truecharts.org/charts/incubator/plexripper
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plexripper.png
keywords:
- plexripper
- Backup
- Downloaders
- MediaApp-Video
- MediaApp-Music
- MediaApp-Photos
- MediaApp-Other
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: plexripper
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/plexripper
- https://github.com/PlexRipper/PlexRipper/
type: application
version: 4.0.6
annotations:
truecharts.org/catagories: |
- media
- Backup
- Downloaders
- MediaApp-Video
- MediaApp-Music
- MediaApp-Photos
- MediaApp-Other
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

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/incubator/)
**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 @@
## [plexripper-4.0.6](https://github.com/truecharts/charts/compare/plexripper-5.0.0...plexripper-4.0.6) (2023-08-29)

View File

@@ -0,0 +1,8 @@
A multi-platform media downloader that indexes and downloads content from your accessible Plex servers.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/plexripper](https://truecharts.org/charts/stable/plexripper)
---
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!

Binary file not shown.

View File

@@ -0,0 +1,47 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/plexripper
tag: v0.14.0@sha256:21dbbc0b199be9a6910bee31611968518f532445bde9a5ea7b848c7566e0d154
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
targetPort: 7000
port: 7000
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: true
type: http
readiness:
enabled: true
type: http
startup:
enabled: true
type: http
persistence:
config:
enabled: true
mountPath: /Config
downloads:
enabled: true
mountPath: /Downloads
portal:
open:
enabled: true

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 @@
{{ include "tc.v1.common.loader.all" . }}

View File

View File

@@ -0,0 +1,11 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/plexripper.png
categories:
- media
- Backup
- Downloaders
- MediaApp-Video
- MediaApp-Music
- MediaApp-Photos
- MediaApp-Other
screenshots: []