fix(cleanarr): cleanup Cleanarr (#3330)

* feat(kitchenowl): add kitchenownl

* add backend image

* add icon

* update images

* fixup cleanarr

* root

* fix var

* remove kitchenowl until there is a way to change ports for back and front
This commit is contained in:
Stavros Kois
2022-07-28 18:12:11 +03:00
committed by GitHub
parent f20276bad5
commit 598aad2492
5 changed files with 43 additions and 41 deletions
+6 -9
View File
@@ -1,22 +1,16 @@
annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- MediaApp-Other
apiVersion: v2 apiVersion: v2
appVersion: "latest" appVersion: "latest"
version: 0.0.15
dependencies: dependencies:
- name: common - name: common
repository: https://library-charts.truecharts.org repository: https://library-charts.truecharts.org
version: 10.4.8 version: 10.4.8
deprecated: false deprecated: false
description: description: A simple UI to help find and delete duplicate and sample files from your Plex server.
A simple UI to help find and delete duplicate and sample files from your
Plex server.
home: https://github.com/truecharts/charts/tree/master/charts/incubator/cleanarr home: https://github.com/truecharts/charts/tree/master/charts/incubator/cleanarr
icon: https://truecharts.org/img/chart-icons/cleanarr.png icon: https://truecharts.org/img/chart-icons/cleanarr.png
keywords: keywords:
- cleanarr - cleanarr
- MediaApp-Other
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
maintainers: maintainers:
- email: info@truecharts.org - email: info@truecharts.org
@@ -27,4 +21,7 @@ sources:
- https://github.com/se1exin/cleanarr - https://github.com/se1exin/cleanarr
- https://hub.docker.com/r/selexin/cleanarr/ - https://hub.docker.com/r/selexin/cleanarr/
type: application type: application
version: 0.0.14 annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- Media
+15 -15
View File
@@ -83,31 +83,37 @@ questions:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: PLEX_BASE_URL - variable: PLEX_BASE_URL
label: 'PLEX_BASE_URL' label: 'PLEX_BASE_URL'
description: "(required) Plex Server Address (e.g. http192.169.1.10032400)" description: "Plex Server Address (e.g. http://192.169.1.100:32400)"
schema: schema:
type: string type: string
default: "" default: ""
- variable: PLEX_TOKEN - variable: PLEX_TOKEN
label: 'PLEX_TOKEN' label: 'PLEX_TOKEN'
description: "(required) A valid Plex token for your Plex Server " description: "A valid Plex token for your Plex Server "
schema: schema:
type: string type: string
private: true
default: "" default: ""
- variable: LIBRARY_NAMES - variable: LIBRARY_NAMES
label: 'LIBRARY_NAMES' label: 'LIBRARY_NAMES'
description: "(optional) Name(s) of your Plex Libraries to search. Separate multiple library names with " description: "Name(s) of your Plex Libraries to search. Separate multiple library names with semi-colon *;*"
schema: schema:
type: string type: string
default: "" default: ""
- variable: BYPASS_SSL_VERIFY - variable: PAGE_SIZE
label: 'PAGE_SIZE'
description: "To avoid plex timeouts, results are loaded in pages (or chunks)"
schema:
type: int
default: 50
- variable: BYPASS_SSL_VERIFY_BOOL
label: 'BYPASS_SSL_VERIFY' label: 'BYPASS_SSL_VERIFY'
description: "(optional) Disable SSL certificate verification. Use this if your Plex Server has " description: "Disable SSL certificate verification."
schema: schema:
type: string type: boolean
default: "" default: false
# Include{containerConfig} # Include{containerConfig}
@@ -137,7 +143,7 @@ questions:
description: "This port exposes the container port on the service" description: "This port exposes the container port on the service"
schema: schema:
type: int type: int
default: 5000 default: 10247
required: true required: true
- variable: advanced - variable: advanced
label: "Show Advanced settings" label: "Show Advanced settings"
@@ -174,8 +180,6 @@ questions:
type: int type: int
default: 80 default: 80
- variable: serviceexpert - variable: serviceexpert
group: "Networking and Services" group: "Networking and Services"
label: "Show Expert Config" label: "Show Expert Config"
@@ -203,7 +207,6 @@ questions:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: config - variable: config
label: "config Storage" label: "config Storage"
description: "Container Path frontend" description: "Container Path frontend"
@@ -214,10 +217,8 @@ questions:
# Include{persistenceBasic} # Include{persistenceBasic}
# Include{persistenceAdvanced} # Include{persistenceAdvanced}
# Include{persistenceList} # Include{persistenceList}
- variable: ingress - variable: ingress
label: "" label: ""
group: "Ingress" group: "Ingress"
@@ -306,7 +307,6 @@ questions:
default: 568 default: 568
# Include{podSecurityContextAdvanced} # Include{podSecurityContextAdvanced}
# Include{resources} # Include{resources}
# Include{advanced} # Include{advanced}
+19 -14
View File
@@ -1,28 +1,33 @@
env:
BYPASS_SSL_VERIFY: ""
LIBRARY_NAMES: ""
PLEX_BASE_URL: ""
PLEX_TOKEN: ""
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/cleanarr repository: tccr.io/truecharts/cleanarr
tag: latest@sha256:4c1d5e10372fc89e675ec7e2dcc588b05f9450f36f7dec1ce26026b087abc449 tag: v2.1.3@sha256:bdc34c5c58197977ca557aeee075b050b5da8c09c594443cd14c4cdec123775e
persistence:
config:
enabled: true
mountPath: /frontend
podSecurityContext: podSecurityContext:
runAsGroup: 0 runAsGroup: 0
runAsUser: 0 runAsUser: 0
securityContext: securityContext:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
runAsNonRoot: false runAsNonRoot: false
env:
BYPASS_SSL_VERIFY: '{{ ternary "1" "0" .Values.env.BYPASS_SSL_VERIFY_BOOL }}'
# User defined
BYPASS_SSL_VERIFY_BOOL: true
LIBRARY_NAMES: ""
PLEX_BASE_URL: ""
PLEX_TOKEN: ""
PAGE_SIZE: 50
service: service:
main: main:
enabled: true
ports: ports:
main: main:
enabled: true protocol: HTTP
port: 5000 port: 10247
protocol: TCP
targetPort: 80 targetPort: 80
persistence:
config:
enabled: true
mountPath: /config
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: ts3-manager name: ts3-manager
version: 0.0.1 version: 0.0.2
appVersion: "2.2.0" appVersion: "2.2.0"
description: A modern web interface for maintaining Teamspeak3 servers. description: A modern web interface for maintaining Teamspeak3 servers.
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: joni1802/ts3-manager repository: tccr.io/truecharts/ts3-manager
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v2.2.0@sha256:9db01d161d2b37e8e872ed701cbedb3986eff46721d12f4d59279abfec5b0354 tag: v2.2.0@sha256:64998a18482fa9646d7250d52e1b1a66095a9806273ecf6da9e91b981414f6a5
env: env:
PORT: "{{ .Values.service.main.ports.main.port }}" PORT: "{{ .Values.service.main.ports.main.port }}"