Helm 2.15 Upgrades not working

If anyone else is having issues with helm upgrades as of version 2.15, I'd like to leave my notes on the matter.

Helm as of version 2.15, when you use the --wait argument, will now wait for the Ingress object to be ready. src: Release Helm v2.15.0 · helm/helm · GitHub

Notable Changes
...
--wait now waits for ingress hosts to become ready

Traefik previous to version 1.7 apparently didn't support updating the ingress status, resulting in an empty ingress status, thus, failing your helm upgrade if it contained an ingress object. Tiller just complains that the ingress is not ready (as this is now checked by helm: Wait for ingress host to be ready · helm/helm@1d95d83 · GitHub)

In traefik 1.7, you should add the publishedService to your traefik configuration so it may be able to update the ingress object and effectively set it's status to ready, so helm doesn't fail.

[kubernetes]
  [kubernetes.ingressEndpoint]
    publishedService = "traefik/traefik"

traefik/traefik in publishedService is <namespace>/<traefik service name>

This would be in your configMap in kubernetes or values.yaml file:

kubernetes:
  ingressEndpoint:
    publishedService: "traefik/traefik"

@Exodus,

The stable/traefik helm chart has supported the ingressEndpoint for more than 30 minor versions. In fact, it was implemented as soon as Traefik 1.7.0 was released (chart version 1.44).

Note that setting kubernetes.ingressEndpoint.publishedService in your values.yaml will enable that configuration in the proper fashion.

That's how I updated/fixed it.

Those that don't have that enabled (because it's defaulted to None), will get these errors. My post should serve as a guide to helping people with this particular issue.

10-4.

Thanks for pointing it out for other users that may have the same issue!

1 Like

Thanks, I've added an example values.yaml piece for reference as well.

This might want to be enabled default since now helm is checking for the ingress status.

I have created: https://github.com/helm/charts/issues/18206
And a PR for it here: https://github.com/helm/charts/pull/18209

Github suggested I add: @ldez but it failed to let me assign him as a reviewer. Adding here for visibility.