Skip to content

Commit 958f577

Browse files
default route (#56)
* define default route timeouts of 60s * simplify routes
1 parent 18586f3 commit 958f577

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

charts/application-core/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.5.2
18+
version: 1.6.0
1919

2020
maintainers:
2121
- name: Dominic DePasquale

charts/application-core/values.yaml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,23 @@ autoscaling:
136136

137137
serviceProfile:
138138
create: false
139-
routes: {}
139+
routes:
140+
- condition:
141+
method: GET
142+
name: Catch-all GET
143+
timeout: 60s
144+
- condition:
145+
method: POST
146+
name: Catch-all POST
147+
timeout: 60s
148+
- condition:
149+
method: PUT
150+
name: Catch-all PUT
151+
timeout: 60s
152+
- condition:
153+
method: DELETE
154+
name: Catch-all DELETE
155+
timeout: 60s
140156
# RetryBudget describes the maximum number of retries that should be issued
141157
# to this service.
142158
retryBudget:

0 commit comments

Comments
 (0)