Skip to content

Commit

Permalink
Updated Flow to support custom ingress annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
tlawrie committed Feb 19, 2024
1 parent 1c37248 commit 6caf212
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bmrg-flow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: bmrg-flow
description: Boomerang Flow
type: application
version: 5.2.2
version: 5.2.3
appVersion: 4.0.0
home: https://useboomerang.io
dependencies:
Expand Down
6 changes: 3 additions & 3 deletions bmrg-flow/templates/ingress-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ metadata:
{{ $.Values.global.ingress.annotationsPrefix}}/limit-rpm: "300"
{{ $.Values.global.ingress.annotationsPrefix}}/limit-connections: "10"
{{ $.Values.global.ingress.annotationsPrefix}}/use-regex: "true"
{{- with $.Values.global.ingress.annotations }}
{{ toYaml . | indent 4 }}
{{- end }}
{{- with $.Values.global.ingress.annotations }}
{{ toYaml . | indent 4 }}
{{- end }}
spec:
ingressClassName: {{ $.Values.global.ingress.class}}
rules:
Expand Down
6 changes: 3 additions & 3 deletions bmrg-flow/templates/ingress-app-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ metadata:
{{ $.Values.global.ingress.annotationsPrefix}}/limit-rpm: "300"
{{ $.Values.global.ingress.annotationsPrefix}}/limit-connections: "10"
{{ $.Values.global.ingress.annotationsPrefix}}/use-regex: "true"
{{- with $.Values.global.ingress.annotations }}
{{ toYaml . | indent 4 }}
{{- end }}
{{- with $.Values.global.ingress.annotations }}
{{ toYaml . | indent 4 }}
{{- end }}
spec:
ingressClassName: {{ $.Values.global.ingress.class}}
rules:
Expand Down
6 changes: 3 additions & 3 deletions bmrg-flow/templates/ingress-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ metadata:
{{ $.Values.global.ingress.annotationsPrefix}}/app-root: "{{ default "" $.Values.global.ingress.root }}/{{ $tier }}/{{ $k }}"
{{- end }}
{{ $.Values.global.ingress.annotationsPrefix}}/client-max-body-size: 1m
{{- with $.Values.global.ingress.annotations }}
{{ toYaml . | indent 4 }}
{{- end }}
{{- with $.Values.global.ingress.annotations }}
{{ toYaml . | indent 4 }}
{{- end }}
spec:
ingressClassName: {{ $.Values.global.ingress.class}}
rules:
Expand Down

0 comments on commit 6caf212

Please sign in to comment.