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# Example: Install flowgen from local chart
helm install my-flowgen ./charts/flowgen \
--namespace flowgen \
--create-namespace \
-f values.yamlEach chart has its own values.yaml file with configurable options. See the individual chart directories for details:
# 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 --debughelm package charts/flowgen