BREAKING CHANGE feat(readarr) add postgres support and auth in in gui (#6392)

* add postgres support + auth in gui

* fix postgres

* Delete _secret.tpl

* Update charts/stable/readarr/templates/common.yaml

Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
Signed-off-by: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com>

* update chart and values

* add empty string

---------

Signed-off-by: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com>
Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
This commit is contained in:
Xstar97TheNoob
2023-02-28 09:09:32 +01:00
committed by GitHub
co-authored by Kjeld Schouten-Lebbing
parent bd03b50610
commit 9d5f95fc0a
4 changed files with 74 additions and 24 deletions
+5 -2
View File
@@ -4,6 +4,10 @@ dependencies:
- name: common - name: common
repository: https://library-charts.truecharts.org repository: https://library-charts.truecharts.org
version: 11.1.2 version: 11.1.2
- condition: postgresql.enabled
name: postgresql
repository: https://charts.truecharts.org/
version: 11.0.18
deprecated: false deprecated: false
description: A fork of Radarr to work with Books & AudioBooks description: A fork of Radarr to work with Books & AudioBooks
home: https://truecharts.org/charts/stable/readarr home: https://truecharts.org/charts/stable/readarr
@@ -22,11 +26,10 @@ maintainers:
name: readarr name: readarr
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/readarr - https://github.com/truecharts/charts/tree/master/charts/stable/readarr
- https://ghcr.io/onedr0p/readarr-develop
- https://github.com/Readarr/Readarr - https://github.com/Readarr/Readarr
- https://readarr.com - https://readarr.com
type: application type: application
version: 13.0.15 version: 14.0.0
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+40 -18
View File
@@ -8,11 +8,33 @@ questions:
# Include{replicas} # Include{replicas}
# Include{replica1} # Include{replica1}
# Include{controllerExpertExtraArgs} # Include{controllerExpertExtraArgs}
- variable: env
group: App Configuration
label: Image Environment
schema:
additional_attrs: true
type: dict
attrs:
- variable: READARR__AUTHENTICATION_METHOD
label: Auth Method
description: Sets the auth method.
schema:
type: string
default: ""
enum:
- value: ""
description: In-App Setting
- value: External
description: External
- value: Basic
description: Basic
- value: Forms
description: Forms
# Include{containerConfig} # Include{containerConfig}
# Include{serviceRoot} # Include{serviceRoot}
- variable: main - variable: main
label: "Main Service" label: Main Service
description: "The Primary service on which the healthcheck runs, often the webUI" description: The Primary service on which the healthcheck runs, often the webUI
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
@@ -20,14 +42,14 @@ questions:
# Include{serviceSelectorLoadBalancer} # Include{serviceSelectorLoadBalancer}
# Include{serviceSelectorExtras} # Include{serviceSelectorExtras}
- variable: main - variable: main
label: "Main Service Port Configuration" label: Main Service Port Configuration
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
- variable: port - variable: port
label: "Port" label: Port
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: 8787 default: 8787
@@ -38,8 +60,8 @@ questions:
# Include{serviceList} # Include{serviceList}
# Include{persistenceRoot} # Include{persistenceRoot}
- variable: config - variable: config
label: "App Config Storage" label: App Config Storage
description: "Stores the Application Configuration." description: Stores the Application Configuration.
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
@@ -48,7 +70,7 @@ questions:
# Include{persistenceList} # Include{persistenceList}
# Include{ingressRoot} # Include{ingressRoot}
- variable: main - variable: main
label: "Main Ingress" label: Main Ingress
schema: schema:
additional_attrs: true additional_attrs: true
type: dict type: dict
@@ -60,41 +82,41 @@ questions:
# Include{security} # Include{security}
# Include{securityContextAdvancedRoot} # Include{securityContextAdvancedRoot}
- variable: privileged - variable: privileged
label: "Privileged mode" label: Privileged mode
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: readOnlyRootFilesystem - variable: readOnlyRootFilesystem
label: "ReadOnly Root Filesystem" label: ReadOnly Root Filesystem
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: allowPrivilegeEscalation - variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation" label: Allow Privilege Escalation
schema: schema:
type: boolean type: boolean
default: false default: false
- variable: runAsNonRoot - variable: runAsNonRoot
label: "runAsNonRoot" label: runAsNonRoot
schema: schema:
type: boolean type: boolean
default: true default: true
# Include{podSecurityContextRoot} # Include{podSecurityContextRoot}
- variable: runAsUser - variable: runAsUser
label: "runAsUser" label: runAsUser
description: "The UserID of the user running the application" description: The UserID of the user running the application
schema: schema:
type: int type: int
default: 568 default: 568
- variable: runAsGroup - variable: runAsGroup
label: "runAsGroup" label: runAsGroup
description: "The groupID this App of the user running the application" description: The groupID this App of the user running the application
schema: schema:
type: int type: int
default: 568 default: 568
- variable: fsGroup - variable: fsGroup
label: "fsGroup" label: fsGroup
description: "The group that should own ALL storage." description: The group that should own ALL storage.
schema: schema:
type: int type: int
default: 568 default: 568
+6 -1
View File
@@ -1 +1,6 @@
{{ include "tc.common.loader.all" . }} {{/* Make sure all variables are set properly */}}
{{- include "tc.common.loader.init" . }}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}
+23 -3
View File
@@ -1,17 +1,31 @@
image: image:
repository: tccr.io/truecharts/readarr repository: tccr.io/truecharts/readarr
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: 0.1.4.1596@sha256:31ec42eddeff7af9919ef5312289c74eace114b7fa532cf6040afaf54e3b5c98 tag: v0.1.4.1596@sha256:8228fb87ef5626392c481849a7f8d089e7ae16afc148da54e7ef0a1bd4669483
securityContext: securityContext:
readOnlyRootFilesystem: false readOnlyRootFilesystem: false
env:
READARR__PORT: "{{ .Values.service.main.ports.main.port }}"
READARR__AUTHENTICATION_METHOD: ""
READARR__POSTGRES_PORT: 5432
READARR__POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
READARR__POSTGRES_MAIN_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
READARR__POSTGRES_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
READARR__POSTGRES_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
service: service:
main: main:
ports: ports:
main: main:
port: 8787 port: 8787
targetPort: 8787
probes: probes:
liveness: liveness:
@@ -37,7 +51,13 @@ probes:
persistence: persistence:
config: config:
enabled: true enabled: true
mountPath: "/config" mountPath: /config
postgresql:
enabled: true
existingSecret: dbcreds
postgresqlDatabase: readarr
postgresqlUsername: readarr
portal: portal:
enabled: true enabled: true