Helm charts for Kubernetes deployments

Add the Helm repository

helm repo add connve https://helm.connve.com
helm repo update

Install a chart

# Example: Install flowgen
helm install my-flowgen connve/flowgen \
  --namespace flowgen \
  --create-namespace \
  -f values.yaml

Local development

# Install from local chart
helm install my-flowgen ./charts/flowgen \
  --namespace flowgen \
  --create-namespace \
  -f values.yaml

Available Charts

flowgen

Configuration-based data activation

Development

Testing chart changes locally

# 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

Package a chart

helm package charts/flowgen