Skip to content

Commit 451c9b4

Browse files
authored
fix(ingress): add hardcoded Pathtype and add ci/default-values (#17)
Signed-off-by: Toni Tauro <toni.tauro@adfinis.com>
1 parent 0da8a1f commit 451c9b4

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

charts/caluma/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: application
77
# This is the chart version. This version number should be incremented each time you make changes
88
# to the chart and its templates, including the app version.
99
# Versions are expected to follow Semantic Versioning (https://semver.org/)
10-
version: 0.10.7
10+
version: 0.10.8
1111

1212
# This is the version number of the application being deployed. This version number should be
1313
# incremented each time you make changes to the application. Versions are not expected to

charts/caluma/ci/default-values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ingress:
2+
enabled: true
3+
hosts:
4+
- host: caluma.chart-example.local
5+
tls: []

charts/caluma/templates/ingress.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@ spec:
2727
http:
2828
paths:
2929
- path: /
30+
pathType: Prefix
3031
backend:
3132
service:
3233
name: {{ $fullName }}-frontend
3334
port:
3435
number: 80
3536
- path: /graphql
37+
pathType: Prefix
3638
backend:
3739
service:
3840
name: {{ $fullName }}-backend

0 commit comments

Comments
 (0)