-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpihole-values.yaml
53 lines (45 loc) · 1.02 KB
/
pihole-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
# https://artifacthub.io/packages/helm/mojo2600/pihole
serviceWeb:
https:
enabled: false
serviceDns:
type: LoadBalancer
loadBalancerIP: 192.168.2.153
annotations:
metallb.universe.tf/allow-shared-ip: pihole-svc
ingress:
enabled: true
hosts:
- dns.dissi.me
adminPassword: #
replicaCount: 1
serviceDhcp:
enabled: false
persistentVolumeClaim:
enabled: true
accessModes:
- ReadWriteMany
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: "kubernetes.io/os"
operator: In
values:
- linux
# -- Probes configuration
probes:
# -- probes.liveness -- Configure the healthcheck for the ingress controller
liveness:
# -- Generate a liveness probe
enabled: true
initialDelaySeconds: 1
failureThreshold: 20
timeoutSeconds: 5
readiness:
# -- Generate a readiness probe
enabled: true
initialDelaySeconds: 1
failureThreshold: 20
timeoutSeconds: 5