mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
Merge branch 'master' into master
This commit is contained in:
commit
54efffaf52
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.102.0
|
appVersion: v0.102.0
|
||||||
description: DNS proxy as ad-blocker for local network
|
description: DNS proxy as ad-blocker for local network
|
||||||
name: adguard-home
|
name: adguard-home
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
keywords:
|
keywords:
|
||||||
- adguard-home
|
- adguard-home
|
||||||
- adguard
|
- adguard
|
||||||
|
@ -83,6 +83,11 @@ spec:
|
|||||||
- name: config
|
- name: config
|
||||||
mountPath: /opt/adguardhome/conf
|
mountPath: /opt/adguardhome/conf
|
||||||
readOnly: false
|
readOnly: false
|
||||||
|
{{- if .Values.tlsSecretName }}
|
||||||
|
- name: certs
|
||||||
|
mountPath: /certs
|
||||||
|
readOnly: false
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
{{- if .Values.configAsCode.enabled }}
|
{{- if .Values.configAsCode.enabled }}
|
||||||
@ -153,6 +158,11 @@ spec:
|
|||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
volumes:
|
volumes:
|
||||||
|
{{- if .Values.tlsSecretName }}
|
||||||
|
- name: certs
|
||||||
|
secret:
|
||||||
|
secretName: {{ .Values.tlsSecretName }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.configAsCode.enabled }}
|
{{- if .Values.configAsCode.enabled }}
|
||||||
- name: configmap
|
- name: configmap
|
||||||
configMap:
|
configMap:
|
||||||
|
@ -165,6 +165,10 @@ configAsCode:
|
|||||||
verbose: false
|
verbose: false
|
||||||
schema_version: 6
|
schema_version: 6
|
||||||
|
|
||||||
|
tlsSecretName: ""
|
||||||
|
# name of the secret that contains the tls cert and key.
|
||||||
|
# this secret will be mounted inside the adguard container /certs path. e.g. works with cert-manager
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: adguard/adguardhome
|
repository: adguard/adguardhome
|
||||||
# Image tag is set via charts appVersion. If you want to override the tag, specify it here
|
# Image tag is set via charts appVersion. If you want to override the tag, specify it here
|
||||||
|
Loading…
Reference in New Issue
Block a user