k8s icon indicating copy to clipboard operation
k8s copied to clipboard

helm: 'tolerations' spec attributes are missing in the nats helm chart

Open carlosrmendes opened this issue 3 years ago • 1 comments

carlosrmendes avatar May 06 '21 17:05 carlosrmendes

Is this being looked at?

LarsBingBong avatar Jun 23 '21 08:06 LarsBingBong

I think this can be closed based on this.

mprimeaux avatar Feb 16 '23 17:02 mprimeaux

looks like the latest chart version 1.1.0 is missing tolerations (and nodeSelector for that matter) in its stateful-set.yaml

the last version to support the tolerations and nodeSelector is 0.19.17

anapsix avatar Oct 04 '23 11:10 anapsix

@anapsix you can add those with the appropriate merge keys under podTemplate:

podTemplate:
  merge:
    spec:
      nodeSelector: // your node selector
      tolerations: // your tolerations

That's how the 1.x chart works for anything not specefically defined in the values.yaml

The README has some good docs and examples

caleblloyd avatar Oct 04 '23 13:10 caleblloyd