This repository contains Helm charts for deploying microservices.
.
├── index.yaml # Helm repository index file
├── notification-service-chart-0.1.0.tgz # Packaged notification service chart
├── order-service-chart-0.1.0.tgz # Packaged order service chart
└── README.md # This file
To add this Helm repository to your local Helm installation:
helm repo add charts https://erickk0.github.io/charts
helm repo update
To install a chart from this repository:
# Install notification service
helm install notification-service charts/notification-service-chart
# Install order service
helm install order-service charts/order-service-chart
To list all available charts in this repository:
helm search repo charts
This repository contains packaged Helm charts (.tgz files) and the corresponding index.yaml file that serves as the repository index for Helm.