fix(tpl): fix logic in tpl (#1668)

* fix(common): fix login in portal path

* fix(authelia): fix logic in configmap

* fix(traefik): fix logic in args.tpl

* fix(prometheus): fix login in clusterrolebinding.yaml

* fix(prometheus): fix logic in clusterrole.yaml

* fix(common): fix logic in wireguard's container.tpl

* bump patch common

* bump patch authelia

* bump patch prometheus

* bump patch traefik
This commit is contained in:
Stavros Kois 2022-01-09 15:25:08 +02:00 committed by GitHub
parent 8c1164bc5d
commit 29ce3e1c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 10 additions and 10 deletions

View File

@ -28,7 +28,7 @@ sources:
- https://github.com/prometheus-community/helm-charts
- https://github.com/prometheus-operator/kube-prometheus
type: application
version: 1.1.35
version: 1.1.36
annotations:
truecharts.org/catagories: |
- metrics

View File

@ -1,4 +1,4 @@
{{- if and .Values.prometheus.enabled -}}
{{- if .Values.prometheus.enabled -}}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:

View File

@ -1,4 +1,4 @@
{{- if and .Values.prometheus.enabled }}
{{- if .Values.prometheus.enabled }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:

View File

@ -22,7 +22,7 @@ sources:
- https://github.com/traefik/traefik-helm-chart
- https://traefik.io/
type: application
version: 10.0.33
version: 10.0.34
annotations:
truecharts.org/catagories: |
- network

View File

@ -48,7 +48,7 @@ args:
{{- end }}
{{- if .Values.providers.kubernetesIngress.enabled }}
- "--providers.kubernetesingress"
{{- if and .Values.providers.kubernetesIngress.publishedService.enabled }}
{{- if .Values.providers.kubernetesIngress.publishedService.enabled }}
- "--providers.kubernetesingress.ingressendpoint.publishedservice={{ template "providers.kubernetesIngress.publishedServicePath" . }}"
{{- end }}
{{- if .Values.providers.kubernetesIngress.labelSelector }}

View File

@ -15,4 +15,4 @@ maintainers:
name: common
sources: null
type: library
version: 8.10.2
version: 8.10.3

View File

@ -53,7 +53,7 @@ env:
volumeMounts:
- mountPath: {{ .Values.persistence.shared.mountPath }}
name: shared
{{- if or .Values.addons.vpn.configFile }}
{{- if .Values.addons.vpn.configFile }}
- name: vpnconfig
mountPath: /etc/wireguard/wg0.conf
{{- end }}

View File

@ -69,7 +69,7 @@
{{- $host = .Values.portal.host }}
{{- end }}
{{- if and ( .Values.portal.path ) }}
{{- if .Values.portal.path }}
{{- $path = .Values.portal.path }}
{{- end }}

View File

@ -38,7 +38,7 @@ sources:
- https://github.com/authelia/chartrepo
- https://github.com/authelia/authelia
type: application
version: 8.0.23
version: 8.0.24
annotations:
truecharts.org/catagories: |
- security

View File

@ -18,7 +18,7 @@ data:
AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE: "/secrets/SMTP_PASSWORD"
{{- end }}
AUTHELIA_SESSION_REDIS_PASSWORD_FILE: "/secrets/REDIS_PASSWORD"
{{- if and .Values.redisProvider.high_availability.enabled}}
{{- if .Values.redisProvider.high_availability.enabled }}
AUTHELIA_SESSION_REDIS_HIGH_AVAILABILITY_SENTINEL_PASSWORD_FILE: "/secrets/REDIS_SENTINEL_PASSWORD"
{{- end }}
{{- if .Values.duo_api.enabled }}