Skip to content

Commit 7f16f76

Browse files
committed
[sophora-weblcient] fixed port of ingress backend
1 parent 9d8f70c commit 7f16f76

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

charts/sophora-webclient/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 1.5.0
9+
version: 1.5.1
1010
annotations:
1111
artifacthub.io/changes: |
12-
- kind: added
13-
description: "Added HTTPRoute support for Gateway API."
12+
- kind: fixed
13+
description: "Fixed port of Ingress."
1414
1515
# This is the version number of the application being deployed. This version number should be
1616
# incremented each time you make changes to the application. Versions are not expected to

charts/sophora-webclient/templates/ingress.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "webclient.fullname" . -}}
3+
{{- $svcPort := .Values.service.port -}}
34
apiVersion: networking.k8s.io/v1
45
kind: Ingress
56
metadata:
@@ -33,6 +34,6 @@ spec:
3334
service:
3435
name: {{ $fullName }}
3536
port:
36-
number: {{ .Values.service.port }}
37+
number: {{ $svcPort }}
3738
{{- end }}
3839
{{- end }}

0 commit comments

Comments
 (0)