Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix nodeselector to nodeSelector in Helm chart
Currently, the default `nodeselector` in the `values.yaml` of the Helm chart is incorrect since it doesn't actually do anything. ```bash $ helm template --set="nodeselector.hi=bye" gmsa charts/gmsa | yq e 'select(.kind == "Deployment") | .spec.template.spec.nodeSelector' kubernetes.io/os: linux $ helm template --set="nodeSelector.hi=bye" gmsa charts/gmsa | yq e 'select(.kind == "Deployment") | .spec.template.spec.nodeSelector' kubernetes.io/os: linux hi: bye ``` To fix this, I'm simply modifying `nodeselector` to `nodeSelector` in the default `values.yaml`.
- Loading branch information