blob: 5b9d963fe526fbf0205de70b21de727b55889a8c [file] [log] [blame]
giolekva050609f2021-12-29 15:51:40 +04001apiVersion: helm.toolkit.fluxcd.io/v2beta1
2kind: HelmRelease
3metadata:
4 name: pihole
Giorgi Lekveishvili7fb28bf2023-06-24 19:51:16 +04005 namespace: {{ .Release.Namespace }}
giolekva050609f2021-12-29 15:51:40 +04006spec:
7 chart:
8 spec:
9 chart: charts/pihole
10 sourceRef:
11 kind: GitRepository
12 name: pcloud
Giorgi Lekveishvili28ad4512023-06-02 11:44:27 +040013 namespace: {{ .Global.Id }}
giolekva050609f2021-12-29 15:51:40 +040014 interval: 1m0s
15 values:
Giorgi Lekveishvili28ad4512023-06-02 11:44:27 +040016 domain: {{ .Values.Subdomain}}.{{ .Global.PrivateDomain }}
giolekva050609f2021-12-29 15:51:40 +040017 pihole:
Giorgi Lekveishvilifa57edf2023-06-14 13:49:47 +040018 fullnameOverride: pihole
giolekva050609f2021-12-29 15:51:40 +040019 image:
20 repository: "pihole/pihole"
21 tag: v5.8.1
22 persistentVolumeClaim:
23 enabled: true
24 size: 5Gi
25 adminPassword: admin
26 ingress:
27 enabled: false
28 serviceDhcp:
29 enabled: false
30 serviceDns:
31 type: ClusterIP
32 serviceWeb:
33 type: ClusterIP
34 http:
35 enabled: true
36 https:
37 enabled: false
Giorgi Lekveishvili28ad4512023-06-02 11:44:27 +040038 virtualHost: {{ .Values.Subdomain }}.{{ .Global.PrivateDomain }}
giolekva050609f2021-12-29 15:51:40 +040039 resources:
40 requests:
41 cpu: "250m"
42 memory: "100M"
43 limits:
44 cpu: "500m"
45 memory: "250M"
46 oauth2:
giolekva050609f2021-12-29 15:51:40 +040047 secretName: oauth2-secret
48 configName: oauth2-proxy
Giorgi Lekveishvili28ad4512023-06-02 11:44:27 +040049 hydraAdmin: http://hydra-admin.{{ .Global.NamespacePrefix }}core-auth.svc
Giorgi Lekveishvilifa57edf2023-06-14 13:49:47 +040050 hydraPublic: https://hydra.{{ .Global.Domain }}
Giorgi Lekveishvili28ad4512023-06-02 11:44:27 +040051 profileUrl: https://accounts-ui.{{ .Global.Domain }}
52 ingressClassName: {{ .Global.Id }}-ingress-private