This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/kashalls/external-dns-unifi-webhook](https://github.com/kashalls/external-dns-unifi-webhook) | minor | `v0.6.2` -> `v0.7.0` | --- ### Release Notes <details> <summary>kashalls/external-dns-unifi-webhook (ghcr.io/kashalls/external-dns-unifi-webhook)</summary> ### [`v0.7.0`](https://github.com/kashalls/external-dns-unifi-webhook/releases/tag/v0.7.0) [Compare Source](https://github.com/kashalls/external-dns-unifi-webhook/compare/v0.6.2...v0.7.0) #### What's Changed - chore(deps): update golang docker tag to v1.25 by [@​renovate](https://github.com/renovate)\[bot] in [#​127](https://github.com/kashalls/external-dns-unifi-webhook/pull/127) - chore(deps): update actions/checkout action to v5 by [@​renovate](https://github.com/renovate)\[bot] in [#​126](https://github.com/kashalls/external-dns-unifi-webhook/pull/126) - fix(deps): update module github.com/go-chi/chi/v5 to v5.2.3 by [@​renovate](https://github.com/renovate)\[bot] in [#​128](https://github.com/kashalls/external-dns-unifi-webhook/pull/128) - fix(deps): update module golang.org/x/net to v0.44.0 by [@​renovate](https://github.com/renovate)\[bot] in [#​131](https://github.com/kashalls/external-dns-unifi-webhook/pull/131) - fix(deps): update module sigs.k8s.io/external-dns to v0.19.0 by [@​renovate](https://github.com/renovate)\[bot] in [#​130](https://github.com/kashalls/external-dns-unifi-webhook/pull/130) - fix(deps): update module github.com/prometheus/client\_golang to v1.23.2 by [@​renovate](https://github.com/renovate)\[bot] in [#​129](https://github.com/kashalls/external-dns-unifi-webhook/pull/129) **Full Changelog**: <https://github.com/kashalls/external-dns-unifi-webhook/compare/v0.6.2...v0.7.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzUuNCIsInVwZGF0ZWRJblZlciI6IjQxLjEzNS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJpbWFnZSJdfQ==--> Reviewed-on: #1678 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
external-dns-unifi:
|
|
fullnameOverride: external-dns-unifi
|
|
serviceMonitor:
|
|
enabled: true
|
|
interval: 1m
|
|
sources:
|
|
- ingress
|
|
- crd
|
|
- gateway-httproute
|
|
- gateway-tlsroute
|
|
policy: sync
|
|
registry: txt
|
|
txtOwnerId: default
|
|
txtPrefix: k8s.
|
|
domainFilters: ["alexlebens.net"]
|
|
excludeDomains: []
|
|
provider:
|
|
name: webhook
|
|
webhook:
|
|
image:
|
|
repository: ghcr.io/kashalls/external-dns-unifi-webhook
|
|
tag: v0.7.0
|
|
env:
|
|
- name: UNIFI_HOST
|
|
value: https://192.168.1.1
|
|
- name: UNIFI_API_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: external-dns-unifi-secret
|
|
key: api-key
|
|
- 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
|