Publish new changes in catalog

This commit is contained in:
sonicaj
2024-03-01 11:50:58 +00:00
parent 38b85d257f
commit 2de2d707ac
41 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ description: Emby is designed to help you manage your personal media library, su
annotations:
title: Emby Server
type: application
version: 2.0.2
version: 2.0.3
apiVersion: v2
appVersion: 4.8.1.0
kubeVersion: '>=1.16.0-0'

View File

@@ -25,7 +25,7 @@ def migrate_common_lib(values):
values.update({
# Migrate Network
'embyNetwork': {
'webPort': values['embyServerHttp']['port'],
'webPort': values['embyServerHttp']['port'] if values['hostNetwork'] else 9096,
'hostNetwork': values['hostNetwork'],
},
# Migrate Resources

View File

@@ -3,7 +3,7 @@ description: DNS and Ad-filtering for your network.
annotations:
title: Pi-hole
type: application
version: 2.0.5
version: 2.0.6
apiVersion: v2
appVersion: 2024.02.0
kubeVersion: '>=1.16.0-0'

View File

@@ -32,7 +32,7 @@ workload:
- KILL
env:
WEB_PORT: {{ .Values.piholeNetwork.webPort }}
WEBPASSWORD: {{ .Values.piholeConfig.webPassword }}
WEBPASSWORD: {{ .Values.piholeConfig.webPassword | quote }}
{{- if .Values.piholeNetwork.dhcp.enabled }}
DHCP_ACTIVE: "true"
DHCP_START: {{ .Values.piholeNetwork.dhcp.start }}