Skip to content

Commit f9fcb66

Browse files
authored
Fix overeager removing of whitespaces conflicting with helm lint (#83)
1 parent a3ae8f1 commit f9fcb66

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/privatebin/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: privatebin
66
home: https://privatebin.info/
77
icon: https://raw.githubusercontent.com/PrivateBin/assets/master/images/preview/icon.png
88
type: application
9-
version: 0.17.0
9+
version: 0.17.1
1010
maintainers:
1111
- name: bdashrad
1212

charts/privatebin/templates/ingress.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
{{- if .Values.ingress.enabled -}}
2+
{{ if .Values.ingress.enabled -}}
33
{{- $fullName := include "privatebin.fullname" . -}}
44
{{- $svcPortName := .Values.service.portName -}}
55
{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}

charts/privatebin/templates/serviceaccount.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
{{- if .Values.rbac.create -}}
2+
{{ if .Values.rbac.create -}}
33
apiVersion: v1
44
kind: ServiceAccount
55
metadata:

0 commit comments

Comments
 (0)