k8s
k8s copied to clipboard
helm: 'tolerations' spec attributes are missing in the nats helm chart
Is this being looked at?
I think this can be closed based on this.
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 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