/helmcharts

Public helm charts repository

Primary LanguageSmartyMIT LicenseMIT

helm-charts

Artifact Hub

Usage

  1. Add or update a Helm chart: push your source code of Helm chart under charts/<your chart>
  2. New release will be created by GitHub Actions (e.g. https://github.com/fnzv/helmcharts/releases/tag/example-0.1.0)
  3. Add this helm chart repo to your helm client configuration
    helm repo add fnzv https://charts.sa.mi.it
    helm repo update
    
  4. Update repo and search
    helm search repo fnzv
    NAME                    CHART VERSION   APP VERSION     DESCRIPTION
    fnzv/dump1090           0.2.7                           A Helm chart for deploying dump1090 for ADB-S f...
    fnzv/example            0.1.0           1.16.0          A Helm chart for Kubernetes
    fnzv/fr24feeder         0.1.2                           A Helm chart for deploying fr24feeder
    
  5. Install
    helm install example fnzv/example 
    
  6. Upgrade (optional)
    helm upgrade example fnzv/example --set ingress=true
    
  7. Uninstall
    helm uninstall example