generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tyler Witlin <[email protected]>
- Loading branch information
1 parent
9beb4ab
commit b304c64
Showing
5 changed files
with
77 additions
and
60 deletions.
There are no files selected for viewing
55 changes: 0 additions & 55 deletions
55
kubernetes/sol/apps/networking/external-dns/app/bind/helmrelease.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
kubernetes/sol/apps/networking/external-dns/app/unifi/helmrelease.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/helm.toolkit.fluxcd.io/helmrelease_v2.json | ||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||
kind: HelmRelease | ||
metadata: | ||
name: &app external-dns-unifi | ||
spec: | ||
interval: 30m | ||
chart: | ||
spec: | ||
chart: external-dns | ||
version: 1.15.0 | ||
sourceRef: | ||
kind: HelmRepository | ||
name: external-dns | ||
namespace: flux-system | ||
install: | ||
remediation: | ||
retries: 3 | ||
upgrade: | ||
cleanupOnFail: true | ||
remediation: | ||
strategy: rollback | ||
retries: 3 | ||
values: | ||
fullnameOverride: *app | ||
# logLevel: debug | ||
provider: | ||
name: webhook | ||
webhook: | ||
image: | ||
repository: ghcr.io/kashalls/external-dns-unifi-webhook | ||
tag: v0.2.4@sha256:b180041b035b44d74062c9308763903aaa8df458f3d9de5c1b78768b9f4fcbbe | ||
env: | ||
- name: UNIFI_HOST | ||
value: https://10.1.0.1 | ||
- name: UNIFI_USER | ||
valueFrom: | ||
secretKeyRef: | ||
name: &secret external-dns-unifi-secret | ||
key: EXTERNAL_DNS_UNIFI_USER | ||
- name: UNIFI_PASS | ||
valueFrom: | ||
secretKeyRef: | ||
name: *secret | ||
key: EXTERNAL_DNS_UNIFI_PASS | ||
# - name: LOG_LEVEL | ||
# value: "debug" | ||
livenessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: http-webhook | ||
initialDelaySeconds: 10 | ||
timeoutSeconds: 5 | ||
readinessProbe: | ||
httpGet: | ||
path: /readyz | ||
port: http-webhook | ||
initialDelaySeconds: 10 | ||
timeoutSeconds: 5 | ||
extraArgs: | ||
- --ignore-ingress-tls-spec | ||
policy: sync | ||
sources: ["ingress", "service"] | ||
txtOwnerId: kyak | ||
txtPrefix: k8s.kyak. | ||
domainFilters: ["${SECRET_PUBLIC_DOMAIN}"] | ||
serviceMonitor: | ||
enabled: true | ||
podAnnotations: | ||
secret.reloader.stakater.com/reload: *secret |
File renamed without changes.