Helm Development - cturner8/kube-mcp GitHub Wiki
For helm chart development, run a helm install pointing to the local chart directory:
helm install kube-mcp charts/kube-mcp
To override the default values.yaml, either:
- create a
values.dev.yamlwithincharts/kube-mcp(additionalvalues.*.yamlfiles are ignored by git) - override using
--setflags (more limited than using the values file)
For example:
helm install kube-mcp charts/kube-mcp \
--values charts/kube-mcp/values.dev.yaml \
--set ingress.enabled=true
See also
- Helm Install - Learn how to deploy kube-mcp to production clusters using Helm