mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 15:59:09 +00:00
110 lines
2.3 KiB
YAML
Executable File
110 lines
2.3 KiB
YAML
Executable File
# Default values for powerdns.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
replicaCount: 1
|
|
strategyType: Recreate
|
|
|
|
image:
|
|
repository: psitrax/powerdns
|
|
tag: v4.3.0
|
|
pullPolicy: Always
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
serviceAccount:
|
|
# Specifies whether a service account should be created
|
|
create: true
|
|
# The name of the service account to use.
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
name:
|
|
|
|
podSecurityContext: {}
|
|
# fsGroup: 2000
|
|
|
|
securityContext: {}
|
|
# capabilities:
|
|
# drop:
|
|
# - ALL
|
|
# readOnlyRootFilesystem: true
|
|
# runAsNonRoot: true
|
|
# runAsUser: 1000
|
|
|
|
service:
|
|
## Set external traffic policy to: "Local" to preserve source IP on
|
|
## providers supporting it
|
|
## Ref: https://kubernetes.io/docs/tutorials/services/source-ip/#source-ip-for-services-with-typeloadbalancer
|
|
externalTrafficPolicy: ""
|
|
type: ClusterIP
|
|
port: 53
|
|
|
|
resources: {}
|
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
# choice for the user. This also increases chances charts run on environments with little
|
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
powerdns:
|
|
domain: mydomain.local
|
|
postgres:
|
|
username: pdns
|
|
password: pdnspass
|
|
database: pdns
|
|
mysql:
|
|
username: pdns
|
|
password: pdnspass
|
|
database: pdns
|
|
dnssec: true
|
|
config: {}
|
|
|
|
mariadb:
|
|
enabled: true
|
|
db:
|
|
name: pdns
|
|
user: pdns
|
|
password: pdnspass
|
|
replication:
|
|
enabled: false
|
|
rootUser:
|
|
password: pdnsrootpass
|
|
master:
|
|
persistence:
|
|
enabled: false
|
|
postgres:
|
|
enabled: false
|
|
global:
|
|
postgresqlUsername: pdns
|
|
postgresqlPassword: pdnspass
|
|
postgresqlDatabase: pdns
|
|
|
|
# Probes configuration
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
initialDelaySeconds: 30
|
|
failureThreshold: 5
|
|
timeoutSeconds: 10
|
|
readiness:
|
|
enabled: true
|
|
initialDelaySeconds: 30
|
|
failureThreshold: 5
|
|
timeoutSeconds: 10
|
|
startup:
|
|
enabled: false
|
|
failureThreshold: 30
|
|
periodSeconds: 10
|