diff --git a/helm/fuel-subgraph/Chart.yaml b/helm/fuel-subgraph/Chart.yaml index 6dc5656..772f17c 100644 --- a/helm/fuel-subgraph/Chart.yaml +++ b/helm/fuel-subgraph/Chart.yaml @@ -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.2.2 +version: 0.2.3 # 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 diff --git a/helm/fuel-subgraph/templates/deployment.yaml b/helm/fuel-subgraph/templates/deployment.yaml index e5a1bc3..62305d6 100644 --- a/helm/fuel-subgraph/templates/deployment.yaml +++ b/helm/fuel-subgraph/templates/deployment.yaml @@ -39,7 +39,7 @@ spec: - name: CHAIN_ID value: {{ .Values.app.chain_id }} ports: - - name: http + - name: firehose containerPort: {{ .Values.service.port }} protocol: TCP livenessProbe: diff --git a/helm/fuel-subgraph/templates/service.yaml b/helm/fuel-subgraph/templates/service.yaml index 5f75aa9..7a6eb0a 100644 --- a/helm/fuel-subgraph/templates/service.yaml +++ b/helm/fuel-subgraph/templates/service.yaml @@ -7,7 +7,7 @@ spec: type: {{ .Values.service.type }} ports: - port: {{ .Values.service.port }} - targetPort: http + targetPort: {{ .Values.service.port }} protocol: TCP - name: http + name: firehose selector: {{- include "fuel-subgraph.selectorLabels" . | nindent 4 }}