Skip to content

Commit

Permalink
Fixing rpc-node ingress port
Browse files Browse the repository at this point in the history
  • Loading branch information
nzenchik committed May 28, 2024
1 parent a88a466 commit 21b4554
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/rpc-node/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.1

# 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
5 changes: 3 additions & 2 deletions charts/rpc-node/templates/execution-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ spec:
{{- end }}
rules:
{{- range .Values.execution.ingress.hosts }}
{{- $port := .port }}
- host: {{ .host | quote }}
http:
paths:
Expand All @@ -50,10 +51,10 @@ spec:
service:
name: {{ $fullName }}-execution-cluster
port:
number: {{ .port }}
number: {{ $port }}
{{- else }}
serviceName: {{ $fullName }}-execution-cluster
servicePort: {{ .port }}
servicePort: {{ $port }}
{{- end }}
{{- end }}
{{- end }}
Expand Down
3 changes: 1 addition & 2 deletions charts/rpc-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@ execution:
paths:
- path: /
pathType: ImplementationSpecific
port:
- 8545
port: 8545
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down

0 comments on commit 21b4554

Please sign in to comment.