Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
bb76e99189
commit
cd269227b8
|
@ -0,0 +1,8 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [kaizoku-0.0.1]kaizoku-0.0.1 (2023-08-29)
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
apiVersion: v2
|
||||
appVersion: "1.6.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 14.0.1
|
||||
- condition: redis.enabled
|
||||
name: redis
|
||||
repository: https://deps.truecharts.org
|
||||
version: 6.0.66
|
||||
deprecated: false
|
||||
description: Kaizoku is self-hosted manga downloader.
|
||||
home: https://truecharts.org/charts/incubator/kaizoku
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/kaizoku.png
|
||||
keywords:
|
||||
- kaizoku
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: kaizoku
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/kaizoku
|
||||
- https://github.com/oae/kaizoku
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1 @@
|
|||
# README
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [kaizoku-0.0.1]kaizoku-0.0.1 (2023-08-29)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Kaizoku is self-hosted manga downloader.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/kaizoku](https://truecharts.org/charts/incubator/kaizoku)
|
||||
|
||||
---
|
||||
|
||||
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.
|
@ -0,0 +1,60 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/kaizoku
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v1.6.1@sha256:b3a80cf6ad2d080845a0e4851872f91657198381c587b5393ade77d5bee92b7d
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsNonRoot: false
|
||||
readOnlyRootFilesystem: false
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
port: 3000
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
KAIZOKU_PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||
DATABASE_URL:
|
||||
secretKeyRef:
|
||||
name: kaizoku-secret
|
||||
key: DATABASE_URL
|
||||
REDIS_HOST:
|
||||
secretKeyRef:
|
||||
expandObjectName: false
|
||||
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
||||
key: url
|
||||
REDIS_PORT: 6379
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
logs:
|
||||
enabled: true
|
||||
mountPath: "/logs"
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/data"
|
||||
|
||||
cnpg:
|
||||
main:
|
||||
enabled: true
|
||||
user: kaizoku
|
||||
database: kaizoku
|
||||
|
||||
redis:
|
||||
enabled: true
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1,13 @@
|
|||
{{/* Define the secrets */}}
|
||||
{{- define "kaizoku.secret" -}}
|
||||
|
||||
{{- $user := .Values.cnpg.main.user -}}
|
||||
{{- $password := .Values.cnpg.main.creds.password | trimAll "\"" -}}
|
||||
{{- $host := .Values.cnpg.main.creds.host | trimAll "\"" -}}
|
||||
{{- $database := .Values.cnpg.main.database -}}
|
||||
|
||||
kaizoku-secret:
|
||||
enabled: true
|
||||
data:
|
||||
DATABASE_URL: {{ printf "postgresql://%v:%v@%v:5432/%v" $user $password $host $database }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,11 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{- $secret := include "kaizoku.secret" . | fromYaml -}}
|
||||
{{- if $secret -}}
|
||||
{{ $secret := (mustMergeOverwrite .Values.secret $secret) }}
|
||||
{{- $_ := set .Values "secret" $secret -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/kaizoku.png
|
||||
categories:
|
||||
- media
|
||||
|
||||
screenshots: []
|
Loading…
Reference in New Issue