Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix more helm indentation issues #39

Merged
merged 1 commit into from
Apr 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions helm/fuel-subgraph/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
apiVersion: v1
kind: Service
metadata:
name: { { include "fuel-subgraph.fullname" . } }
labels: { { - include "fuel-subgraph.labels" . | nindent 4 } }
name: {{ include "fuel-subgraph.fullname" . }}
labels: {{- include "fuel-subgraph.labels" . | nindent 4 }}
spec:
type: { { .Values.service.type } }
type: {{ .Values.service.type }}
ports:
- port: { { .Values.service.port } }
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
- port: { { .Values.firehose.port1 } }
- port: {{ .Values.firehose.port1 }}
targetPort: firehose_port1
protocol: TCP
name: firehose_port1
- port: { { .Values.firehose.port2 } }
- port: {{ .Values.firehose.port2 }}
targetPort: firehose_port2
protocol: TCP
name: firehose_port2
- port: { { .Values.firehose.port3 } }
- port: {{ .Values.firehose.port3 }}
targetPort: firehose_port3
protocol: TCP
name: firehose_port3
selector: { { - include "fuel-subgraph.selectorLabels" . | nindent 4 } }
selector: {{- include "fuel-subgraph.selectorLabels" . | nindent 4 }}
Loading