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

update service port names #40

Merged
merged 2 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions helm/fuel-subgraph/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ spec:
- name: http
containerPort: {{ .Values.service.port }}
protocol: TCP
- name: firehose_port1
- name: firehose-port-1
containerPort: {{ .Values.firehose.port1 }}
protocol: TCP
- name: firehose_port2
- name: firehose-port-2
containerPort: {{ .Values.firehose.port2 }}
protocol: TCP
- name: firehose_port3
- name: firehose-port-3
containerPort: {{ .Values.firehose.port3 }}
protocol: TCP
livenessProbe:
Expand Down Expand Up @@ -81,4 +81,4 @@ spec:
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
12 changes: 6 additions & 6 deletions helm/fuel-subgraph/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ spec:
protocol: TCP
name: http
- port: {{ .Values.firehose.port1 }}
targetPort: firehose_port1
targetPort: firehose-port-1
protocol: TCP
name: firehose_port1
name: firehose-port-1
- port: {{ .Values.firehose.port2 }}
targetPort: firehose_port2
targetPort: firehose-port-2
protocol: TCP
name: firehose_port2
name: firehose-port-2
- port: {{ .Values.firehose.port3 }}
targetPort: firehose_port3
targetPort: firehose-port-3
protocol: TCP
name: firehose_port3
name: firehose-port-3
selector: {{- include "fuel-subgraph.selectorLabels" . | nindent 4 }}
Loading