Fix double key case on lidarr (#1123)

This commit is contained in:
Stavros Kois
2023-04-13 18:16:24 +03:00
committed by GitHub
parent 227202ebae
commit 657a36d161
5 changed files with 8 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: file://../../../common
version: 1.0.3
digest: sha256:1a090020cfa582aff29906320874ffe9b543fcc6c2423c281f434514f2653e02
generated: "2023-04-10T15:33:17.498321276+03:00"
version: 1.0.5
digest: sha256:cf1db8c2ae650987a3e3d8d98767caab62c341bd0fb15309213b00dce87111cc
generated: "2023-04-13T18:03:53.351888216+03:00"

View File

@@ -3,7 +3,7 @@ description: Lidarr is a music collection manager for Usenet and BitTorrent user
annotations:
title: Lidarr
type: application
version: 1.0.0
version: 1.0.1
apiVersion: v2
appVersion: '1.1.3.2982'
kubeVersion: '>=1.16.0-0'
@@ -13,7 +13,7 @@ maintainers:
dependencies:
- name: common
repository: file://../../../common
version: 1.0.3
version: 1.0.5
home: https://github.com/Lidarr/Lidarr
icon: https://raw.githubusercontent.com/Lidarr/Lidarr/develop/Logo/256.png
sources:

View File

@@ -14,15 +14,14 @@ workload:
securityContext:
runAsUser: {{ .Values.lidarrRunAs.user }}
runAsGroup: {{ .Values.lidarrRunAs.group }}
{{ with .Values.lidarrConfig.additionalEnvs }}
env:
LIDARR__PORT: {{ .Values.lidarrNetwork.webPort }}
LIDARR__INSTANCE_NAME: {{ .Values.lidarrConfig.instanceName }}
{{ with .Values.lidarrConfig.additionalEnvs }}
{{ range $env := . }}
{{ $env.name }}: {{ $env.value }}
{{ end }}
{{ end }}
env:
LIDARR__PORT: {{ .Values.lidarrNetwork.webPort }}
LIDARR__INSTANCE_NAME: {{ .Values.lidarrConfig.instanceName }}
probes:
liveness:
enabled: true