Publish new changes in catalog

This commit is contained in:
sonicaj
2024-09-19 15:57:27 +00:00
parent 31a1166385
commit 5005d02416
104 changed files with 9 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ description: Lightweight universal DDNS Updater with web UI
annotations:
title: DDNS Updater
type: application
version: 1.0.30
version: 1.0.31
apiVersion: v2
appVersion: 2.9.0
kubeVersion: '>=1.16.0-0'

View File

@@ -17,6 +17,13 @@ def migrate(values):
values[storageKey][storage] = {key: value for key, value in check_val.items() if key != 'hostPath'}
for config in values.get('ddnsConfig', {}).get('config', []):
for key in config.keys():
if key.endswith('ProviderIP'):
config.pop(key)
break
return values

View File

@@ -56,7 +56,7 @@ settings:
{{- fail (printf "DDNS Updater - DNS Provider [%v] is not supported" $item.provider) -}}
{{- end }}
- provider: {{ $item.provider }}
host: {{ $item.host | required (printf "DDNS Updater - Expected non-empty [Host] for %v provider" $item.provider) | quote }}
host: {{ $item.host | quote }}
domain: {{ $item.domain | required (printf "DDNS Updater - Expected non-empty [Domain] for %v provider" $item.provider) | quote }}
ip_version: {{ $item.ipVersion | default "" | quote }}
{{- include (printf "ddns.config.%v" $item.provider) (dict "item" $item) | trim | nindent 4 -}}

Some files were not shown because too many files have changed in this diff Show More