Skip to content

Commit cd5003b

Browse files
author
Liviu Damian
committed
Fix Helm Chart service file
This PR fixes the formatting used in the Helm Chart `service.yaml` file.
1 parent da82d40 commit cd5003b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

helm/fuel-explorer/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.1.2
18+
version: 0.1.3
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
+7-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
apiVersion: v1
22
kind: Service
33
metadata:
4-
name: { { include "fuel-explorer.fullname" . } }
5-
labels: { { - include "fuel-explorer.labels" . | nindent 4 } }
4+
name: {{ include "fuel-explorer.fullname" . }}
5+
labels:
6+
{{- include "fuel-explorer.labels" . | nindent 4 }}
67
spec:
7-
type: { { .Values.service.type } }
8+
type: {{ .Values.service.type }}
89
ports:
9-
- port: { { .Values.service.port } }
10+
- port: {{ .Values.service.port }}
1011
targetPort: http
1112
protocol: TCP
1213
name: http
13-
selector: { { - include "fuel-explorer.selectorLabels" . | nindent 4 } }
14+
selector:
15+
{{- include "fuel-explorer.selectorLabels" . | nindent 4 }}

0 commit comments

Comments
 (0)