mirror of
https://github.com/nold360/hive-apps
synced 2024-11-09 23:36:38 +00:00
feat(core): external-dns-adguard
This commit is contained in:
parent
83881e33d2
commit
454fba347c
2 changed files with 115 additions and 0 deletions
|
@ -60,6 +60,17 @@ apps:
|
||||||
keys:
|
keys:
|
||||||
- CF_API_TOKEN
|
- CF_API_TOKEN
|
||||||
|
|
||||||
|
- name: external-dns-adguard
|
||||||
|
repoURL: https://kubernetes-sigs.github.io/external-dns
|
||||||
|
chart: external-dns
|
||||||
|
targetRevision: 1.14.5
|
||||||
|
secrets:
|
||||||
|
- name: adguard-config
|
||||||
|
keys:
|
||||||
|
- ADGUARD_URL
|
||||||
|
- ADGUARD_USER
|
||||||
|
- ADGUARD_PASSWORD
|
||||||
|
|
||||||
- name: cert-manager
|
- name: cert-manager
|
||||||
namespace: cert-manager
|
namespace: cert-manager
|
||||||
repoURL: https://charts.jetstack.io
|
repoURL: https://charts.jetstack.io
|
||||||
|
|
104
projects/core/values/external-dns-adguard.yaml
Normal file
104
projects/core/values/external-dns-adguard.yaml
Normal file
|
@ -0,0 +1,104 @@
|
||||||
|
# Default values for external-dns.
|
||||||
|
# This is a YAML-formatted file.
|
||||||
|
# Declare variables to be passed into your templates.
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: registry.k8s.io/external-dns/external-dns
|
||||||
|
tag: "v0.14.2"
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
shareProcessNamespace: false
|
||||||
|
|
||||||
|
podSecurityContext:
|
||||||
|
fsGroup: 65534
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
runAsNonRoot: true
|
||||||
|
runAsUser: 65534
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
capabilities:
|
||||||
|
drop: ["ALL"]
|
||||||
|
|
||||||
|
# Defaults to `ClusterFirst`.
|
||||||
|
# Valid values are: `ClusterFirstWithHostNet`, `ClusterFirst`, `Default` or `None`.
|
||||||
|
dnsPolicy:
|
||||||
|
|
||||||
|
serviceMonitor:
|
||||||
|
enabled: false
|
||||||
|
additionalLabels: {}
|
||||||
|
interval: 1m
|
||||||
|
scrapeTimeout: 10s
|
||||||
|
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: 50Mi
|
||||||
|
cpu: 200m
|
||||||
|
requests:
|
||||||
|
memory: 50Mi
|
||||||
|
cpu: 10m
|
||||||
|
|
||||||
|
logLevel: info
|
||||||
|
logFormat: text
|
||||||
|
|
||||||
|
interval: 1m
|
||||||
|
triggerLoopOnEvent: false
|
||||||
|
|
||||||
|
sources:
|
||||||
|
- ingress
|
||||||
|
# - service
|
||||||
|
|
||||||
|
policy: upsert-only
|
||||||
|
|
||||||
|
registry: txt
|
||||||
|
txtOwnerId: ""
|
||||||
|
txtPrefix: ""
|
||||||
|
txtSuffix: ""
|
||||||
|
|
||||||
|
domainFilters:
|
||||||
|
- dc
|
||||||
|
|
||||||
|
#extraArgs:
|
||||||
|
|
||||||
|
deploymentStrategy:
|
||||||
|
type: Recreate
|
||||||
|
|
||||||
|
provider:
|
||||||
|
name: webhook
|
||||||
|
webhook:
|
||||||
|
image:
|
||||||
|
repository: ghcr.io/muhlba91/external-dns-provider-adguard
|
||||||
|
tag: latest
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 8888
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
timeoutSeconds: 5
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 8888
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
timeoutSeconds: 5
|
||||||
|
env:
|
||||||
|
- name: LOG_LEVEL
|
||||||
|
value: debug
|
||||||
|
- name: ADGUARD_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: adguard-config
|
||||||
|
key: ADGUARD_URL
|
||||||
|
- name: ADGUARD_USER
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: adguard-config
|
||||||
|
key: ADGUARD_USER
|
||||||
|
- name: ADGUARD_PASSWORD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: adguard-config
|
||||||
|
key: ADGUARD_PASSWORD
|
||||||
|
- name: SERVER_HOST
|
||||||
|
value: "0.0.0.0"
|
||||||
|
- name: DRY_RUN
|
||||||
|
value: "false"
|
Loading…
Reference in a new issue