Skip to content

Commit

Permalink
Merge pull request #65 from boomerang-io/feat-ingressClassName
Browse files Browse the repository at this point in the history
Feat ingress class name
  • Loading branch information
morarucostel authored May 17, 2022
2 parents 8b29135 + 4ea49eb commit 075b979
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 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: 4.12.12
version: 4.12.14
appVersion: 3.8.0
home: https://useboomerang.io
dependencies:
Expand Down
1 change: 1 addition & 0 deletions bmrg-flow/templates/ingress-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ metadata:
{{ $.Values.global.ingress.annotationsPrefix}}/client-max-body-size: 1m
kubernetes.io/ingress.class: {{ $.Values.global.ingress.class}}
spec:
ingressClassName: {{ $.Values.global.ingress.class}}
rules:
- host: {{ $.Values.global.ingress.host }}
http:
Expand Down
1 change: 1 addition & 0 deletions bmrg-flow/templates/ingress-service-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ metadata:
{{ $.Values.global.ingress.annotationsPrefix}}/limit-connections: "3"
kubernetes.io/ingress.class: {{ $.Values.global.ingress.class}}
spec:
ingressClassName: {{ $.Values.global.ingress.class}}
rules:
- host: {{ $.Values.global.ingress.host }}
http:
Expand Down
1 change: 1 addition & 0 deletions bmrg-flow/templates/ingress-service-listener.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ metadata:
{{ $.Values.global.ingress.annotationsPrefix}}/limit-connections: "3"
kubernetes.io/ingress.class: {{ $.Values.global.ingress.class}}
spec:
ingressClassName: {{ $.Values.global.ingress.class}}
rules:
- host: {{ $.Values.global.ingress.host }}
http:
Expand Down
1 change: 1 addition & 0 deletions bmrg-flow/templates/ingress-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ metadata:
{{ $.Values.global.ingress.annotationsPrefix}}/client-max-body-size: 1m
kubernetes.io/ingress.class: {{ $.Values.global.ingress.class}}
spec:
ingressClassName: {{ $.Values.global.ingress.class}}
rules:
- host: {{ $.Values.global.ingress.host }}
http:
Expand Down
7 changes: 3 additions & 4 deletions bmrg-flow/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,10 @@ global:
root: /flow
host: cloud.boomerangplatform.net
tlsSecretName: bmrg-tls-cloud
# The prefix for the annotations inside the ingress definition. Typically for IKS Community Ingress
# you need to set it to "nginx.ingress.kubernetes.io"
annotationsPrefix: "ingress.kubernetes.io"
# The prefix for the annotations inside the ingress definition.
annotationsPrefix: "nginx.ingress.kubernetes.io"
# The class of the ingress, it is used to mark the ingress resources to be picked-up by a specific
# controller. For IKS Community Ingress set it to "public-iks-k8s-nginx"
# controller.
class: "nginx"
# Enable appRoot if you wish the 'app-root' i.e. '/' ingress annotation to redirect to the flow app
enableAppRoot: false
Expand Down

0 comments on commit 075b979

Please sign in to comment.