Skip to content

Commit 9d94bf2

Browse files
authored
feat: add http_server_location_configuration_snippet to charts/gateway/templates/configmap.yaml (#133)
1 parent 14a7eed commit 9d94bf2

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

charts/gateway/Chart.yaml

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

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

charts/gateway/templates/configmap.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,9 @@ data:
179179
{{- if .Values.configurationSnippet.httpSrv }}
180180
http_server_configuration_snippet: {{- toYaml .Values.configurationSnippet.httpSrv | indent 6 }}
181181
{{- end }}
182+
{{- if .Values.configurationSnippet.httpSrvLocation }}
183+
http_server_location_configuration_snippet: {{- toYaml .Values.configurationSnippet.httpSrvLocation | indent 6 }}
184+
{{- end }}
182185
{{- if .Values.configurationSnippet.httpAdmin }}
183186
http_admin_configuration_snippet: {{ toYaml .Values.configurationSnippet.httpAdmin | indent 6 }}
184187
{{- end }}

charts/gateway/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,8 @@ configurationSnippet:
528528
529529
httpSrv: |
530530
531+
httpSrvLocation: |
532+
531533
httpAdmin: |
532534
533535
stream: |

0 commit comments

Comments
 (0)