forked from deliveryhero/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
81 lines (60 loc) · 1.85 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
image:
repository: registry.k8s.io/dns/k8s-dns-node-cache
# Overrides the image tag whose default is the chart appVersion.
tag: ""
config:
# Internal k8s DNS domain
dnsDomain: "cluster.local"
# Main coredns service (kube-dns) ip, used on iptables-mode.
dnsServer: "172.20.0.10"
# Virtual IP to be used by ipvs mode, to be used as --cluster-dns, must not collide.
localDns: "169.254.20.25"
# Set communication protocol. Options are `prefer_udp` or `force_tcp`
commProtocol: "force_tcp"
setupInterface: true
setupIptables: true
skipTeardown: false
# Overrides the generated configuration with specified one.
customConfig: ""
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created.
create: true
# Annotations to add to the service account.
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template.
name: ""
podAnnotations: {}
podLabels: {}
daemonsetAnnotations: {}
daemonsetLabels: {}
securityContext:
capabilities:
add:
- NET_ADMIN
# https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/user-guides/getting-started.md
serviceMonitor:
# Ensure that servicemonitor is created, this will disable prometheus annotations
enabled: false
labels: {}
# https://github.com/grafana/helm-charts/blob/main/charts/grafana/README.md
dashboard:
enabled: false
# namespace where grafana sidecar is configured to look for dashboards. e.g. "monitoring"
namespace: kube-system
# label that grafana sidecar is configured to look for
label: grafana_dashboard
annotations: {}
resources:
requests:
cpu: 25m
memory: 128Mi
limits:
memory: 128Mi
affinity: {}
imagePullSecrets: []
# - name: "image-pull-secret"
prometheusScraping:
enabled: true