Skip to content

Commit 8213f11

Browse files
authored
Merge branch 'main' into matt-user/fix-script-highlighting
2 parents 77aa541 + 7d8b5e9 commit 8213f11

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/helm-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: bsord/helm-push@v4.1.0
3030
with:
3131
useOCIRegistry: true
32-
registry-url: oci://ghcr.io/fuellabs/helmrelease
32+
registry-url: oci://ghcr.io/fuellabs/helmcharts
3333
username: ${{ github.repository_owner }}
3434
access-token: ${{ secrets.GITHUB_TOKEN }}
3535
force: true

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.1
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)