jouve / charts

GNU General Public License v3.0
11 stars 18 forks source link

mailpit: setting `ingress.path` to `/*` causes the image to not start #15

Closed DeepDiver1975 closed 1 year ago

DeepDiver1975 commented 1 year ago

When using alb ingress class the path must be /*. When setting ingress.path to /* the image is not starting anymore:

image

DeepDiver1975 commented 1 year ago

In addition I'd like to have more control over the ingress setup (e.g. setting multiple host names).

It might be a better solution to read the full ingres configuration from values ....

as done here for example: https://github.com/codecentric/helm-charts/blob/9e93af2b776014e6d8f6cd270e088f355717460f/charts/mailhog/values.yaml#L64-L75

jouve commented 1 year ago

thanks for the issue !

I added:

example:

ingress:
  enabled: true
  path: /*
  extraHosts:
   - name: foo.example.com
   - name: bar.example.com

don't hesitate to re-open the issue if this is not enough :)