Publish new changes in catalog

This commit is contained in:
sonicaj
2024-06-27 22:47:49 +00:00
parent 0477f2231f
commit c13410ab82
173 changed files with 24 additions and 21 deletions

View File

@@ -4,9 +4,9 @@ description: A file sharing server that puts the control and security of your ow
annotations:
title: Nextcloud
type: application
version: 2.0.9
version: 2.0.10
apiVersion: v2
appVersion: 29.0.2
appVersion: 29.0.3
kubeVersion: '>=1.16.0-0'
maintainers:
- name: truenas

View File

@@ -1,7 +1,7 @@
image:
pullPolicy: IfNotPresent
repository: nextcloud
tag: 29.0.2
tag: 29.0.3
nginxImage:
pullPolicy: IfNotPresent
repository: nginx

View File

@@ -3,9 +3,9 @@ description: Lightweight universal DDNS Updater with web UI
annotations:
title: DDNS Updater
type: application
version: 1.0.28
version: 1.0.29
apiVersion: v2
appVersion: 2.6.0
appVersion: 2.7.0
kubeVersion: '>=1.16.0-0'
maintainers:
- name: truenas

View File

@@ -34,4 +34,4 @@ ddnsConfig:
cloudflareZoneID: zoneid
cloudflareTtl: 1
cloudflareEmail: email@example.com
cloudflareApiKey: api_key
cloudflareApiKey: apikey

View File

@@ -1,7 +1,7 @@
image:
repository: qmcgaw/ddns-updater
pullPolicy: IfNotPresent
tag: v2.6.0
tag: v2.7.0
ci: false
@@ -21,13 +21,13 @@ ddnsConfig:
- provider: all
publicIpHttpProviders:
- provider: all
custom: ""
custom: ''
publicIpv4HttpProviders:
- provider: all
custom: ""
custom: ''
publicIpv6HttpProviders:
- provider: all
custom: ""
custom: ''
publicIpFetchers:
- provider: all
config: []

View File

@@ -33,19 +33,19 @@ workload:
enabled: {{ not .Values.ci }}
type: exec
command:
- /updater/app
- /updater/ddns-updater
- healthcheck
readiness:
enabled: {{ not .Values.ci }}
type: exec
command:
- /updater/app
- /updater/ddns-updater
- healthcheck
startup:
enabled: {{ not .Values.ci }}
type: exec
command:
- /updater/app
- /updater/ddns-updater
- healthcheck
initContainers:
{{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"

View File

@@ -10,7 +10,10 @@ token: {{ $item.cloudflareToken }}
user_service_key: {{ $item.cloudflareUserServiceKey }}
{{- else if and $item.cloudflareEmail $item.cloudflareApiKey }}
email: {{ $item.cloudflareEmail }}
api_key: {{ $item.cloudflareApiKey }}
{{- if eq $item.cloudflareApiKey "api_key" -}} {{/* CI only fix */}}
{{- $_ := set $item "cloudflareApiKey" "apikey" -}}
{{- end }}
key: {{ $item.cloudflareApiKey }}
{{- else -}}
{{- fail "DDNS Updater - Cloudflare provider requires either [Token] or [User Service Key] or [Email and API Key]" -}}
{{- end -}}
@@ -35,5 +38,5 @@ ddnsConfig:
# Email and API key
cloudflareEmail: email - Required
cloudflareApiKey: api_key - Required
cloudflareApiKey: key - Required
*/}}

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