Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2024-05-05 16:55:19 +00:00
parent 0239a641d9
commit 1a6cb363c9
32 changed files with 2850 additions and 14 deletions

View File

@ -0,0 +1,36 @@
annotations:
max_scale_version: 24.04.1
min_scale_version: 24.04.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.14"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: stable
apiVersion: v2
appVersion: 2.0.1
dependencies:
- name: common
version: 23.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
deprecated: false
description: Python script to update metadata and automatically build collections.
home: https://truecharts.org/charts/stable/kometa
icon: https://truecharts.org/img/hotlink-ok/chart-icons/kometa.webp
keywords:
- kometa
kubeVersion: '>=1.24.0-0'
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
name: kometa
sources:
- https://github.com/kometa-team/kometa
- https://github.com/truecharts/charts/tree/master/charts/stable/kometa
- https://hub.docker.com/r/kometateam/kometa
type: application
version: 2.0.2

View File

@ -0,0 +1,56 @@
---
title: README
---
## General Info
TrueCharts can be installed as both _normal_ Helm Charts or as TrueNAS SCALE Apps.
Both solutions are fully supported, but we heavily advice the use of normal Helm Charts where possible
For more information about this Chart, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/kometa)
**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)**
## Installation
### Helm-Chart installation
To install TrueCharts Helm charts using Helm, you can use our OCI Repository.
`helm install mychart oci://tccr.io/truecharts/CHARTNAME`
For more information on how to install TrueCharts Helm charts, checkout the instructions on the website: https://truecharts.org/helm/
### TrueNAS SCALE Apps
For more information on how to use TrueCharts as TrueNAS SCALE Apps, please checkout the [quick-start guides for TrueNAS SCALE](https://truecharts.org/scale/guides/scale-intro).
## Configuration Options
To view the chart specific options, please view Values.yaml included in the chart.
All our Charts use a shared "common" library chart that contains most of the templating and options.
For the complete overview of all available options, please checkout the documentation for them on the website: https://truecharts.org/common/
## Chart Specific Guides and information
All our charts have dedicated documentation pages.
The documentation for this chart can be found here:
https://truecharts.org/charts/incubator/kometa
## Support
- 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/general/sponsor) or contributing back to the project any way you can!
_All Rights Reserved - The TrueCharts Project_

View File

@ -0,0 +1,3 @@
## [kometa-2.0.2]kometa-2.0.2 (2024-05-05)

View File

@ -0,0 +1,8 @@
Python script to update metadata and automatically build collections.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/kometa](https://truecharts.org/charts/stable/kometa)
---
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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,69 @@
image:
repository: kometateam/kometa
tag: v2.0.1@sha256:c1f9d1ef49f976377a4bbbe9018bfed9a7057ccf427d10759a8ad975d4505300
pullPolicy: IfNotPresent
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
enabled: false
ports:
main:
enabled: false
kometa:
run: false
no_countdown: true
time:
- "00:00"
# plex_url: ""
# plex_token: ""
workload:
main:
podSpec:
initContainers:
create-init-config-file:
enabled: true
type: init
imageSelector: "image"
command:
- /bin/sh
- -c
args:
- |
echo "Creating config.yml file..."
if [ -f /config/config.yml ]; then
echo "Config file exists! Skipping..."
else
echo "Config file is missing, getting a new one!"
curl -fLvo /config/config.yml https://raw.githubusercontent.com/kometa-team/kometa/master/config/config.yml.template || (echo "Downloading config file, FAILED..." && exit 1)
fi
containers:
main:
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
envFrom:
- secretRef:
name: "secret"
persistence:
config:
enabled: true
mountPath: /config
targetSelectAll: true
portal:
open:
enabled: false

2601
stable/kometa/2.0.2/questions.yaml Executable file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,17 @@
{{/* Define the secret */}}
{{- define "kometa.secret" -}}
{{- $kometa := .Values.kometa }}
enabled: true
data:
{{/* KOMETA */}}
KOMETA_CONFIG: "/config/config.yml"
{{- if not $kometa.run }}
KOMETA_TIMES: {{ join "," $kometa.times | quote }}
KOMETA_NO_COUNTDOWN: {{ $kometa.no_countdown | quote }}
{{- end }}
KOMETA_RUN: {{ $kometa.run | quote }}
{{/* plex */}}
KOMETA_PLEX_URL: {{ $kometa.plex_url | quote }}
KOMETA_PLEX_TOKEN: {{ $kometa.plex_token | quote }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render secret for kometa */}}
{{- $secret := include "kometa.secret" . | fromYaml -}}
{{- if $secret -}}
{{- $_ := set .Values.secret "secret" $secret -}}
{{- end -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

4
stable/kometa/item.yaml Normal file
View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/kometa.webp
categories:
- media
screenshots: []

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

View File

@ -0,0 +1,3 @@
*for the complete changelog, please refer to the website*
**Important:**

View File

@ -10,13 +10,13 @@ apiVersion: v2
appVersion: 1.21.0
dependencies:
- name: common
version: 22.0.3
version: 23.0.0
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
deprecated: false
deprecated: true
description: Python script to update metadata and automatically build collections.
home: https://truecharts.org/charts/stable/plex-meta-manager
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-meta-manager.webp
@ -33,4 +33,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/plex-meta-manager
- https://hub.docker.com/r/meisnate12/plex-meta-manager
type: application
version: 7.0.4
version: 7.0.6

View File

@ -1,6 +1,6 @@
## [plex-meta-manager-7.0.4](https://github.com/truecharts/charts/compare/plex-meta-manager-6.6.0...plex-meta-manager-7.0.4) (2024-04-30)
## [plex-meta-manager-7.0.6](https://github.com/truecharts/charts/compare/plex-meta-manager-6.6.0...plex-meta-manager-7.0.6) (2024-05-05)
### Chore
@ -10,6 +10,8 @@
- bump common
- bump common to release improved checks on volsync and cnpg ([#21454](https://github.com/truecharts/charts/issues/21454))
- bump everything to release new doc pages
- update groups html ([#21121](https://github.com/truecharts/charts/issues/21121))
@ -18,16 +20,16 @@
- bump everything to regenerate readme's and site index
- update container image common to v20.3.5[@aedd88a](https://github.com/aedd88a) by renovate ([#20535](https://github.com/truecharts/charts/issues/20535))
- update container image common to v20.3.6[@27edfed](https://github.com/27edfed) by renovate ([#20599](https://github.com/truecharts/charts/issues/20599))
- update container image common to v20.3.2[@0722ebb](https://github.com/0722ebb) by renovate ([#20334](https://github.com/truecharts/charts/issues/20334))
- update container image common to v20.3.7[@8cf9fc9](https://github.com/8cf9fc9) by renovate ([#20819](https://github.com/truecharts/charts/issues/20819))
- update container image common to v20.3.6[@27edfed](https://github.com/27edfed) by renovate ([#20599](https://github.com/truecharts/charts/issues/20599))
- update container image common to v20.3.12[@3303278](https://github.com/3303278) by renovate ([#21384](https://github.com/truecharts/charts/issues/21384))
- update container image common to v20.3.5[@aedd88a](https://github.com/aedd88a) by renovate ([#20535](https://github.com/truecharts/charts/issues/20535))
- update container image common to v20.3.4[@d7e1b23](https://github.com/d7e1b23) by renovate ([#20527](https://github.com/truecharts/charts/issues/20527))
- update container image common to v20.3.3[@3876ba5](https://github.com/3876ba5) by renovate ([#20478](https://github.com/truecharts/charts/issues/20478))

View File

Before

Width:  |  Height:  |  Size: 402 B

After

Width:  |  Height:  |  Size: 402 B

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -219,13 +219,6 @@ questions:
schema:
type: string
default: ""
- variable: region
label: "region"
description: "region is primarily for AWS not needed for most cases"
schema:
show_if: [["type", "=", "s3"]]
type: string
default: ""
- variable: bucket
label: "bucket"
schema:

View File

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