Skip to content

Commit

Permalink
fix: remove formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan committed Aug 11, 2023
1 parent 3a991b7 commit d376683
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/explorer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/explorer/templates/00-explorer-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
type: ClusterIP
ports:
- name: http
port: { { $.Values.ports.http } }
port: {{ .Values.ports.http }}
targetPort: http
protocol: TCP
selector:
Expand Down
4 changes: 2 additions & 2 deletions charts/explorer/templates/01-explorer-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ spec:
restartPolicy: Always
containers:
- name: explorer
image: "{{ $.Values.image.repository }}:{{ $.Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: Always
ports:
- name: http
containerPort: "{{ $.Values.containerPorts.http }}"
containerPort: {{ .Values.containerPorts.http }}
4 changes: 2 additions & 2 deletions charts/explorer/templates/04-explorer-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ metadata:
spec:
tls:
- hosts:
- "{{ .Values.host }}"
- {{ .Values.host }}
secretName: "{{ .Values.host }}-secret-tls"
rules:
- host: "{{ .Values.host }}"
- host: {{ .Values.host }}
http:
paths:
- path: /
Expand Down

0 comments on commit d376683

Please sign in to comment.