Browse Source

Linting updates and fix emptyDir for no persistence

pull/136/head
Brandon Clifford 5 years ago
parent
commit
b1e375d2ff
No known key found for this signature in database GPG Key ID: EE7017AA3E567137
  1. 3
      charts/wg-easy/Chart.yaml
  2. 3
      charts/wg-easy/templates/ingress.yaml

3
charts/wg-easy/Chart.yaml

@ -2,7 +2,8 @@ apiVersion: v2
name: wg-easy name: wg-easy
description: A Wireguard Easy Helm chart description: A Wireguard Easy Helm chart
type: application type: application
icon: https://www.wireguard.com/img/wireguard.svg
# This is the chart version. # This is the chart version.
version: 0.1.0 version: 0.1.0
# This is the version number of the application being deployed. # This is the version number of the application being deployed.
appVersion: 4 appVersion: "4"

3
charts/wg-easy/templates/ingress.yaml

@ -16,6 +16,9 @@ metadata:
{{- toYaml . | nindent 4 }} {{- toYaml . | nindent 4 }}
{{- end }} {{- end }}
spec: spec:
{{- if and .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName }}
{{- end }}
{{- if .Values.ingress.tls }} {{- if .Values.ingress.tls }}
tls: tls:
{{- range .Values.ingress.tls }} {{- range .Values.ingress.tls }}

Loading…
Cancel
Save