chartsrepo

Helm Charts

This repository contains Helm charts for various applications by @dejanualex

Usage

Add this Helm repository:

helm repo add dejanu https://dejanu.github.io/chartsrepo/packages
helm repo update
helm search repo dejanu
helm install my-release dejanu/sample-app

Development

To add a new chart:

  1. Create the chart in the charts/ directory:
    helm create charts/my-new-chart
    
  2. Package the chart:
    helm package charts/my-new-chart -d packages
    
  3. Update the repository index:
    helm repo index packages --url https://dejanu.github.io/chartsrepo/packages
    
  4. Commit and push the changes to trigger GitHub Pages deployment.

Repository Structure

chartsrepo/
├── charts/      # For your source chart directories
└── packages/    # For packaged .tgz files and index.yaml
└── README.md    # This file