Update catalog information

This commit is contained in:
sonicaj
2023-04-11 15:25:04 +00:00
parent 730a7bcaaf
commit 16cbcc6e6e
29 changed files with 37 additions and 39 deletions

View File

@@ -3,7 +3,7 @@ description: Sonarr is a PVR for Usenet and BitTorrent users.
annotations:
title: Sonarr
type: application
version: 1.0.0
version: 1.0.1
apiVersion: v2
appVersion: '3.0.10.1567'
kubeVersion: '>=1.16.0-0'
@@ -18,7 +18,7 @@ home: https://github.com/Sonarr/Sonarr
icon: https://raw.githubusercontent.com/Sonarr/Sonarr/develop/Logo/256.png
sources:
- https://github.com/onedr0p/containers/tree/main/apps/sonarr
- https://github.com/truenas/charts/tree/master/charts/sonarr
- https://github.com/truenas/charts/tree/master/community/sonarr
- https://github.com/Sonarr/Sonarr
keywords:
- media

View File

@@ -1,6 +1,6 @@
sonarrConfig:
additionalEnvs:
- name: SONARR__AUTHENTICATION_METHOD
- name: SONARR__API_KEY
value: some-long-api-key
- name: SONARR__LOG_LEVEL
value: error

View File

@@ -32,7 +32,7 @@ questions:
description: The name of the Sonarr instance.
schema:
type: string
default: Sonarr
default: "Sonarr"
required: true
- variable: additionalEnvs
label: Additional Environment Variables
@@ -123,11 +123,11 @@ questions:
schema:
type: string
required: true
default: ixVolume
default: "ixVolume"
enum:
- value: hostPath
- value: "hostPath"
description: Host Path (Path that already exists on the system)
- value: ixVolume
- value: "ixVolume"
description: ixVolume (Dataset created automatically by the system)
- variable: datasetName
label: Dataset Name
@@ -137,7 +137,7 @@ questions:
required: true
hidden: true
immutable: true
default: config
default: "config"
$ref:
- "normalize/ixVolume"
- variable: hostPath
@@ -167,11 +167,11 @@ questions:
schema:
type: string
required: true
default: ixVolume
default: "ixVolume"
enum:
- value: hostPath
- value: "hostPath"
description: Host Path (Path that already exists on the system)
- value: ixVolume
- value: "ixVolume"
description: ixVolume (Dataset created automatically by the system)
- variable: mountPath
label: Mount Path
@@ -214,12 +214,12 @@ questions:
description: CPU limit for Sonarr.
schema:
type: string
default: 4000m
default: "4000m"
required: true
- variable: memory
label: Memory
description: Memory limit for Sonarr.
schema:
type: string
default: 8Gi
default: "8Gi"
required: true

View File

@@ -14,15 +14,14 @@ workload:
securityContext:
runAsUser: {{ .Values.sonarrRunAs.user }}
runAsGroup: {{ .Values.sonarrRunAs.group }}
{{ with .Values.sonarrConfig.additionalEnvs }}
env:
SONARR__PORT: {{ .Values.sonarrNetwork.webPort }}
SONARR__INSTANCE_NAME: {{ .Values.sonarrConfig.instanceName }}
{{ with .Values.sonarrConfig.additionalEnvs }}
{{ range $env := . }}
{{ $env.name }}: {{ $env.value }}
{{ end }}
{{ end }}
env:
SONARR__PORT: {{ .Values.sonarrNetwork.webPort }}
SONARR__INSTANCE_NAME: {{ .Values.sonarrConfig.instanceName }}
probes:
liveness:
enabled: true