Skip to content

Commit ffcfe26

Browse files
committed
Merge branch 'dev'
2 parents ff4486b + 717c496 commit ffcfe26

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

charts/bunkerweb/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.5
18+
version: 0.0.6
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/bunkerweb/templates/bunkerweb-service-external.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
{{- if .Values.service.enabled -}}
32
apiVersion: v1
43
kind: Service
@@ -11,7 +10,9 @@ metadata:
1110
{{- toYaml .Values.service.annotations | nindent 4 }}
1211
spec:
1312
type: {{ .Values.service.type }}
13+
{{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }}
1414
externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }}
15+
{{- end }}
1516
selector:
1617
bunkerweb.io/component: "bunkerweb"
1718
ports:
@@ -23,4 +24,4 @@ spec:
2324
targetPort: 8443
2425
protocol: TCP
2526
name: https
26-
{{- end }}
27+
{{- end }}

0 commit comments

Comments
 (0)