Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Latest commit

 

History

History
17 lines (13 loc) · 810 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 810 Bytes

Helm Repo

To add a new chart:

  1. Add the remote chart repository to your local helm: helm repo add <repo-name> <repo-location>

    • Example: helm repo add bitnami https://charts.bitnami.com/bitnami
  2. Package a chart to a tgz file with:

    • Helm 2: helm package <chart-name> --version <chart-version>
      • Example: helm package bitnami/fluentd --version 5.5.1
    • Helm 3: helm pull <chart-name> --version <chart-version>
      • Example: helm pull bitnami/fluentd --version 5.5.1
  3. Place the tgz file on the root of this repo.

  4. Run helm repo index --url https://dixahq.github.io/sre-helm-repo/ ., which will update index.yaml with a new Chart entry.

  5. Push changes to main, which will publish the Chart.

  6. Remember to run helm repo update to fetch updates to sre-helm-repo.