Skip to content

Commit

Permalink
fix(ingress): service name /port according to v1 (#15)
Browse files Browse the repository at this point in the history
Signed-off-by: Toni Tauro <[email protected]>
  • Loading branch information
eyenx authored Sep 14, 2023
1 parent 0458fec commit 2537bf8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/caluma/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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.10.5
version: 0.10.6

# 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
10 changes: 6 additions & 4 deletions charts/caluma/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ spec:
paths:
- path: /
backend:
serviceName: {{ $fullName }}-frontend
servicePort: 80
service:
name: {{ $fullName }}-frontend
port: 80
- path: /graphql
backend:
serviceName: {{ $fullName }}-backend
servicePort: 8000
service:
name: {{ $fullName }}-backend
port: 8000
{{- end }}
{{- end }}

0 comments on commit 2537bf8

Please sign in to comment.