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.yaml within charts/kube-mcp (additional values.*.yaml files are ignored by git)
  • override using --set flags (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