helm repo add connve https://helm.connve.com
helm repo update
# Example: Install flowgen
helm install my-flowgen connve/flowgen \
--namespace flowgen \
--create-namespace \
-f values.yaml
# Install from local chart
helm install my-flowgen ./charts/flowgen \
--namespace flowgen \
--create-namespace \
-f values.yaml
# Lint a chart
helm lint charts/flowgen
# Dry-run template generation
helm template my-release charts/flowgen -f your-values.yaml
# Install locally for testing
helm install my-release charts/flowgen \
--namespace flowgen \
--create-namespace \
--dry-run --debug
helm package charts/flowgen