Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
b8a53a76c9
commit
cfbaf325cd
|
@ -0,0 +1,13 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [external-dns-1.0.0](https://github.com/truecharts/charts/compare/external-dns-0.0.5...external-dns-1.0.0) (2023-11-07)
|
||||
|
||||
### Feat
|
||||
|
||||
- Move to Enterprise + add Docs ([#14426](https://github.com/truecharts/charts/issues/14426))
|
||||
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.13.6"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 14.2.3
|
||||
deprecated: false
|
||||
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
|
||||
home: https://truecharts.org/charts/enterprise/external-dns
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/external-dns.png
|
||||
keywords:
|
||||
- external-dns
|
||||
- k8s
|
||||
- kubernetes
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: external-dns
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/enterprise/external-dns
|
||||
- https://github.com/kubernetes-sigs/external-dns
|
||||
type: application
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/category: networking
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,27 @@
|
|||
# README
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [external-dns-1.0.0](https://github.com/truecharts/charts/compare/external-dns-0.0.5...external-dns-1.0.0) (2023-11-07)
|
||||
|
||||
### Feat
|
||||
|
||||
- Move to Enterprise + add Docs ([#14426](https://github.com/truecharts/charts/issues/14426))
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/enterprise/external-dns](https://truecharts.org/charts/enterprise/external-dns)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,150 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/external-dns
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v0.13.6@sha256:78c942addf7fbc79c384e55bed9a886706c748d744cedf6214d4a50dd7b76d54
|
||||
|
||||
externaldns:
|
||||
logLevel: "info"
|
||||
logFormat: "text"
|
||||
interval: "1m"
|
||||
provider: "inmemory"
|
||||
sources:
|
||||
- "service"
|
||||
- "ingress"
|
||||
domainFilters: []
|
||||
zoneidFilters: []
|
||||
cloudflareProxied: ""
|
||||
registry: "txt"
|
||||
policy: ""
|
||||
piholeServer: ""
|
||||
piholePassword: ""
|
||||
triggerLoopOnEvent: "false"
|
||||
txtOwnerId: ""
|
||||
txtPrefix: ""
|
||||
txtSuffix: ""
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
targetPort: 7979
|
||||
port: 7979
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
path: "/healthz"
|
||||
readiness:
|
||||
path: "/healthz"
|
||||
startup:
|
||||
path: "/healthz"
|
||||
env:
|
||||
CF_API_TOKEN: ""
|
||||
CF_API_KEY: ""
|
||||
CF_API_EMAIL: ""
|
||||
DO_TOKEN: ""
|
||||
DNSIMPLE_OAUTH: ""
|
||||
LINODE_TOKEN: ""
|
||||
OVH_APPLICATION_KEY: ""
|
||||
OVH_APPLICATION_SECRET: ""
|
||||
OVH_CONSUMER_KEY: ""
|
||||
SCW_ACCESS_KEY: ""
|
||||
SCW_SECRET_KEY: ""
|
||||
|
||||
# -- Whether Role Based Access Control objects like roles and rolebindings should be created
|
||||
rbac:
|
||||
main:
|
||||
enabled: true
|
||||
primary: true
|
||||
clusterWide: true
|
||||
rules:
|
||||
- apiGroups: [""]
|
||||
resources: ["nodes"]
|
||||
verbs: ["list", "watch"]
|
||||
- apiGroups: [""]
|
||||
resources: ["pods"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: [""]
|
||||
resources: ["services", "endpoints"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["extensions", "networking.k8s.io"]
|
||||
resources: ["ingresses"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["networking.istio.io"]
|
||||
resources: ["gateways"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["networking.istio.io"]
|
||||
resources: ["virtualservices"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["getambassador.io"]
|
||||
resources: ["hosts", "ingresses"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["projectcontour.io"]
|
||||
resources: ["httpproxies"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["externaldns.k8s.io"]
|
||||
resources: ["dnsendpoints"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["externaldns.k8s.io"]
|
||||
resources: ["dnsendpoints/status"]
|
||||
verbs: ["*"]
|
||||
- apiGroups: ["gateway.networking.k8s.io"]
|
||||
resources: ["gateways"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["gateway.networking.k8s.io"]
|
||||
resources: ["httproutes"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: [""]
|
||||
resources: ["namespaces"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["gateway.networking.k8s.io"]
|
||||
resources: ["grpcroutes"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["gateway.networking.k8s.io"]
|
||||
resources: ["tlsroutes"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["gateway.networking.k8s.io"]
|
||||
resources: ["tcproutes"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["gateway.networking.k8s.io"]
|
||||
resources: ["udproutes"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["gloo.solo.io", "gateway.solo.io"]
|
||||
resources: ["proxies", "virtualservices"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["configuration.konghq.com"]
|
||||
resources: ["tcpingresses"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["traefik.containo.us", "traefik.io"]
|
||||
resources: ["ingressroutes", "ingressroutetcps", "ingressrouteudps"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["route.openshift.io"]
|
||||
resources: ["routes"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["zalando.org"]
|
||||
resources: ["routegroups"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
- apiGroups: ["zalando.org"]
|
||||
resources: ["routegroups/status"]
|
||||
verbs: ["patch", "update"]
|
||||
- apiGroups: ["cis.f5.com"]
|
||||
resources: ["virtualservers"]
|
||||
verbs: ["get", "watch", "list"]
|
||||
|
||||
# -- The service account the pods will use to interact with the Kubernetes API
|
||||
serviceAccount:
|
||||
main:
|
||||
enabled: true
|
||||
primary: true
|
||||
|
||||
podOptions:
|
||||
automountServiceAccountToken: true
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: false
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1,50 @@
|
|||
{{- define "externaldns.args" -}}
|
||||
args:
|
||||
{{- with .Values.externaldns.provider }}
|
||||
- --provider={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.zoneidFilters }}
|
||||
- --zone-id-filter={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.cloudflareProxied }}
|
||||
- --cloudflare-proxied={{ . }}
|
||||
{{- end }}
|
||||
- --log-level={{ .Values.externaldns.logLevel }}
|
||||
- --log-format={{ .Values.externaldns.logFormat }}
|
||||
- --interval={{ .Values.externaldns.interval }}
|
||||
{{- if .Values.externaldns.triggerLoopOnEvent }}
|
||||
- --events
|
||||
{{- end -}}
|
||||
{{- range .Values.externaldns.sources }}
|
||||
- --source={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.policy }}
|
||||
- --policy={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.registry }}
|
||||
- --registry={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.txtOwnerId }}
|
||||
- --txt-owner-id={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.txtPrefix }}
|
||||
- --txt-prefix={{ . }}
|
||||
{{- end -}}
|
||||
{{- if and (eq .Values.externaldns.txtPrefix "") (ne .Values.externaldns.txtSuffix "") }}
|
||||
- --txt-suffix={{ .Values.externaldns.txtSuffix }}
|
||||
{{- end -}}
|
||||
{{- if .Values.externaldns.namespaced }}
|
||||
- --namespace={{ include "tc.v1.common.lib.metadata.namespace" (dict "caller" "External-DNS" "rootCtx" $ "objectData" .Values) }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.domainFilter }}
|
||||
{{- range . -}}
|
||||
- --domain-filter={{ . }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.piholeServer }}
|
||||
- --pihole-server={{ . }}
|
||||
{{- end -}}
|
||||
{{- with .Values.externaldns.piholePassword }}
|
||||
- --pihole-password={{ . }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
|
@ -0,0 +1,9 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{- $newArgs := (include "externaldns.args" . | fromYaml) }}
|
||||
{{- $args := concat ((get .Values.workload.main.podSpec.containers.main "args") | default list) $newArgs.args }}
|
||||
{{- $_ := set .Values.workload.main.podSpec.containers.main "args" $args -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,4 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/external-dns.png
|
||||
categories:
|
||||
- networking
|
||||
screenshots: []
|
Loading…
Reference in New Issue