Welcome to the My Helm Charts repository! This repository contains Helm charts for deploying applications on Kubernetes.
This repository provides a collection of Helm charts that can be used to deploy various applications on Kubernetes. Each chart includes templates for Kubernetes resources, along with configuration options for customization.
To use these charts, you need to add the repository to your Helm client:
helm repo add my-repo https://<your-username>.github.io/my-helm-charts/
helm repo update
After adding the repository, you can install a chart using the following command:
helm install <release-name> my-repo/<chart-name>
Replace <release-name> with your desired release name and <chart-name> with the name of the chart you want to install.
helm install my-app my-repo/my-custom-chart
Each chart has its own configurable values. You can customize your installation by providing a values.yaml file:
# values.yaml
replicaCount: 1
image:
repository: my-custom-image
tag: latest
service:
type: ClusterIP
port: 80
You can apply your custom values during installation:
helm install my-app my-repo/my-custom-chart -f values.yaml