This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16.8k
/
values.yaml
523 lines (488 loc) · 14.7 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry and imagePullSecrets
##
# global:
# imageRegistry: myRegistryName
# imagePullSecrets:
# - myRegistryKeySecretName
## Bitnami external-dns image version
## ref: https://hub.docker.com/r/bitnami/external-dns/tags/
##
image:
registry: docker.io
repository: bitnami/external-dns
tag: 0.7.0-debian-10-r0
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
##
# pullSecrets:
# - myRegistryKeySecretName
## String to partially override external-dns.fullname template (will maintain the release name)
# nameOverride:
## String to fully override external-dns.fullname template
# fullnameOverride:
## K8s resources type to be observed for new DNS entries by ExternalDNS
##
sources:
- service
- ingress
# - crd
## DNS provider where the DNS records will be created. Available providers are:
## - aws, azure, azure-private-dns, cloudflare, coredns, designate, digitalocean, google, infoblox, rfc2136, transip
##
provider: aws
## Flags related to processing sources
## ref: https://github.com/kubernetes-sigs/external-dns/blob/master/pkg/apis/externaldns/types.go#L272
##
## Limit sources of endpoints to a specific namespace (default: all namespaces)
##
namespace: ""
## Templated strings that are used to generate DNS names from sources that don't define a hostname themselves
##
fqdnTemplates: []
## Combine FQDN template and annotations instead of overwriting
##
combineFQDNAnnotation: false
## Ignore hostname annotation when generating DNS names, valid only when fqdn-template is set
##
ignoreHostnameAnnotation: false
## Allow external-dns to publish DNS records for ClusterIP services
##
publishInternalServices: false
## Allow external-dns to publish host-ip for headless services
##
publishHostIP: false
## The service types to take care about (default: all, options: ClusterIP, NodePort, LoadBalancer, ExternalName)
##
serviceTypeFilter: []
## AWS configuration to be set via arguments/env. variables
##
aws:
## AWS credentials
##
credentials:
secretKey: ""
accessKey: ""
## pre external-dns 0.5.9 home dir should be `/root/.aws`
##
mountPath: "/.aws"
## Use an existing secret with key "credentials" defined.
## This ignores aws.credentials.secretKey, and aws.credentials.accessKey
##
# secretName:
## AWS region
##
region: "us-east-1"
## Zone Filter. Available values are: public, private
##
zoneType: ""
## AWS Role to assume
##
assumeRoleArn: ""
## Maximum number of changes that will be applied in each batch
##
batchChangeSize: 1000
## AWS Zone tags
##
zoneTags: []
## Enable AWS Prefer CNAME. Available values are: true, false
##
preferCNAME: ""
## Enable AWS evaluation of target health. Available values are: true, false
##
evaluateTargetHealth: ""
## Azure configuration to be set via arguments/env. variables
##
azure:
## When a secret to load azure.json is not specified,
## the host's /etc/kubernetes/azure.json will be used
##
## Deprecated: please use tenantId, subscriptionId, aadClientId and aadClientSecret values instead.
##
secretName: ""
## Azure resource group to use
##
cloud: ""
## Azure Cloud to use
##
resourceGroup: ""
## Azure tenant ID to use
##
tenantId: ""
## Azure subscription ID to use
##
subscriptionId: ""
## Azure Application Client ID to use
##
aadClientId: ""
## Azure Application Client Secret to use
##
aadClientSecret: ""
## If you use Azure MSI, this should be set to true
##
useManagedIdentityExtension: false
## Cloudflare configuration to be set via arguments/env. variables
##
cloudflare:
## `CF_API_TOKEN` to set in the environment
##
apiToken: ""
## `CF_API_KEY` to set in the environment
##
apiKey: ""
## Use an existing secret with keys "cloudflare_api_token" or "cloudflare_api_key" defined.
## This ignores cloudflare.apiToken, and cloudflare.apiKey
##
# secretName:
## `CF_API_EMAIL` to set in the environment
##
email: ""
## Enable the proxy feature of Cloudflare
##
proxied: true
## CoreDNS configuration to be set via arguments/env variables
##
coredns:
## Comma-separated list of the etcd endpoints
## Secure (https) endpoints can be used as well, in that case `etcdTLS` section
## should be filled in accordingly
##
etcdEndpoints: "http://etcd-extdns:2379"
## Configuration of the secure communication and client authentication to the etcd cluster
## If enabled all the values under this key must hold a valid data
##
etcdTLS:
## Enable or disable secure communication and client authentication to the etcd cluster
##
enabled: false
## Name of the existing secret containing cert files for client communication
## ref: https://github.com/etcd-io/etcd/blob/master/Documentation/op-guide/security.md
## ref (secret creation):
## https://github.com/bitnami/charts/tree/master/bitnami/etcd#configure-certificates-for-client-communication
##
secretName: "etcd-client-certs"
## Location of the mounted certificates inside external-dns pod
##
mountPath: "/etc/coredns/tls/etcd"
## CA PEM file used to sign etcd TLS cert, should exist in the secret provided above
##
caFilename: "ca.crt"
## Certificate PEM file, should exist in the secret provided above
## Will be used by external-dns to authenticate against etcd
##
certFilename: "cert.pem"
## Private key PEM file, should exist in the secret provided above
## Will be used by external-dns to authenticate against etcd
##
keyFilename: "key.pem"
## OpenStack Designate provider configuration to be set via arguments/env. variables
##
designate:
## Use a custom CA (optional)
##
customCA:
enabled: false
## The content of the custom CA file
##
content: ""
## Location to mount custom CA
##
mountPath: "/config/designate"
## Custom CA filename
##
filename: "designate-ca.pem"
## Use a host path custom CA (optional)
## This conflicts setting the above customCA to true and chart rendering will fail if you set customCA to true and specify customCAHostPath
# customCAHostPath: /path/to/cafile
## Set Openstack environment variables (optional). Username and password will be saved in a kubernetes secret.
## The alternative to this is to export the necessary Openstack environment variables in the extraEnv argument.
# username: "someuser"
# password: "p@55w0rd"
# authUrl: "https://mykeystone.example.net:5000/v3/"
# regionName: "dev"
# userDomainName: "development"
# projectName: "myteamname"
## DigitalOcean configuration to be set via arguments/env. variables
##
digitalocean:
## `DO_TOKEN` to set in the environment
##
apiToken: ""
## Use an existing secret with key "digitalocean_api_token" defined.
## This ignores digitalocean.apiToken
##
# secretName:
## Google configuration to be set via arguments/env. variables
##
google:
## Google Project to use
##
project: ""
## Google Application Credentials
##
serviceAccountSecret: ""
serviceAccountSecretKey: "credentials.json"
serviceAccountKey: ""
## Infoblox configuration to be set via arguments/env. variables
##
infoblox:
## Required keys
##
wapiUsername: "admin"
wapiPassword: ""
gridHost: ""
## Optional keys
##
domainFilter: ""
noSslVerify: false
wapiPort: ""
wapiVersion: ""
wapiConnectionPoolSize: ""
wapiHttpTimeout: ""
## RFC 2136 configuration to be set via arguments/env. variables
##
rfc2136:
host: ""
port: 53
zone: ""
tsigSecret: ""
tsigSecretAlg: hmac-sha256
tsigKeyname: externaldns-key
tsigAxfr: true
## PowerDNS configuration to be set via arguments/env. variables
##
pdns:
apiUrl: ""
apiPort: "8081"
apiKey: ""
## TransIP configuration to be set via arguments/env. variables
##
transip:
## Account name to be used
##
account: ""
##
## API key that is authorised for the account
apiKey: ""
## Limit possible target zones by domain suffixes (optional)
##
domainFilters: []
## Limit possible target zones by zone id (optional)
##
zoneIdFilters: []
## Filter sources managed by external-dns via annotation using label selector semantics (optional)
##
annotationFilter: ""
## When enabled, prints DNS record changes rather than actually performing them
##
dryRun: false
## When enabled, triggers run loop on create/update/delete events (optional, in addition of regular interval)
##
triggerLoopOnEvent: false
## Adjust the interval for DNS updates
##
interval: "1m"
## Verbosity of the ExternalDNS logs. Available values are:
## - panic, debug, info, warn, error, fatal
##
logLevel: info
## Formats of the ExternalDNS logs. Available values are:
## - text, json
##
logFormat: text
## Modify how DNS records are sychronized between sources and providers (options: sync, upsert-only)
##
policy: upsert-only
## Registry Type. Available types are: txt, noop
## ref: https://github.com/kubernetes-sigs/external-dns/blob/master/docs/proposal/registry.md
##
registry: "txt"
## TXT Registry Identifier
##
txtOwnerId: ""
## Prefix to create a TXT record with a name following the pattern prefix.<CNAME record>
##
# txtPrefix: ""
## Load balancer service to be used; ie: custom-istio-namespace/custom-istio-ingressgateway.
## Omit to use the default (istio-system/istio-ingressgateway)
##
istioIngressGateways: []
## Extra Arguments to passed to external-dns
##
extraArgs: {}
## Extra env. variable to set on external-dns container.
##
## extraEnv:
## - name: VARNAME1
## value: value1
## - name: VARNAME2
## valueFrom:
## secretKeyRef:
## name: existing-secret
## key: varname2-key
extraEnv: []
## Replica count
##
replicas: 1
## Affinity for pod assignment (this value is evaluated as a template)
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## Node labels for pod assignment (this value is evaluated as a template)
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
##
nodeSelector: {}
## Tolerations for pod assignment (this value is evaluated as a template)
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
##
tolerations: []
## Annotations for external-dns pods
##
podAnnotations: {}
## Additional labels for the pod(s).
##
podLabels: {}
## Pod priority class name
##
priorityClassName: ""
## Options for the source type "crd"
##
crd:
## Install and use the integrated DNSEndpoint CRD
create: false
## Change these to use an external DNSEndpoint CRD (E.g. from kubefed)
apiversion: ""
kind: ""
## Kubernetes svc configutarion
##
service:
## Kubernetes svc type
##
type: ClusterIP
port: 7979
## Specify the nodePort value for the LoadBalancer and NodePort service types for the client port
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
##
# nodePort:
## Static clusterIP or None for headless services
##
# clusterIP: ""
## External IP list to use with ClusterIP service type
##
externalIPs: []
## Use loadBalancerIP to request a specific static IP,
## otherwise leave blank
##
# loadBalancerIP:
## Address that are allowed when svc is LoadBalancer
##
loadBalancerSourceRanges: []
## Provide any additional annotations which may be required. This can be used to
## set the LoadBalancer service type to internal only.
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
annotations: {}
## RBAC parameteres
## https://kubernetes.io/docs/reference/access-authn-authz/rbac/
##
rbac:
create: true
## Service Account for pods
## https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccountName: default
## Annotations for the Service Account
##
serviceAccountAnnotations: {}
## RBAC API version
##
apiVersion: v1beta1
## Podsecuritypolicy
##
pspEnabled: false
## Kubernetes Security Context
## https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
##
securityContext: {}
# allowPrivilegeEscalation: false
# readOnlyRootFilesystem: true
# capabilities:
# drop: ["ALL"]
podSecurityContext:
fsGroup: 1001
runAsUser: 1001
# runAsNonRoot: true
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources: {}
# limits:
# cpu: 50m
# memory: 50Mi
# requests:
# memory: 50Mi
# cpu: 10m
## Liveness Probe. The block is directly forwarded into the deployment, so you can use whatever livenessProbe configuration you want.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/
##
livenessProbe:
httpGet:
path: /healthz
port: http
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 2
successThreshold: 1
## Readiness Probe. The block is directly forwarded into the deployment, so you can use whatever readinessProbe configuration you want.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/
##
readinessProbe:
httpGet:
path: /healthz
port: http
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
## Configure extra volumes
extraVolumes: []
## Configure extra volumeMounts
extraVolumeMounts: []
## Prometheus Exporter / Metrics
##
metrics:
enabled: false
## Metrics exporter pod Annotation and Labels
##
# podAnnotations:
# prometheus.io/scrape: "true"
# prometheus.io/port: "7979"
## Prometheus Operator ServiceMonitor configuration
##
serviceMonitor:
enabled: false
## Namespace in which Prometheus is running
##
# namespace: monitoring
## Interval at which metrics should be scraped.
## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
##
# interval: 10s
## Timeout after which the scrape is ended
## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
##
# scrapeTimeout: 10s
## ServiceMonitor selector labels
## ref: https://github.com/bitnami/charts/tree/master/bitnami/prometheus-operator#prometheus-configuration
##
# selector:
# prometheus: my-prometheus