Kubernetes ingress regression in PMM helm chart 1.2.0

A work-around i provided to PMM Server deployed on k8s - failed to establish two-way communication channel - #5 by jeff.plewes

Add this to your helm values for ingress:

  community:
    annotations:
      nginx.ingress.kubernetes.io/use-regex: "true"

The nginx.ingress.kubernetes.io/use-regex: “true” was needed to have the ingress controller use regex location blocks for ‘/agent., /inventory.’ etc… without this config, such calls to these urls would not match the location blocks in the ingress controller and instead hit the default location / and its non-grpc upstream.

1 Like