Skip to content

Making-Sense-Info/helm-charts-zazuko

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Zazuko Helm Charts

Artifact Hub Downloads

This repository contains the Helm charts for deploying some of the apps we maintain on Kubernetes.

Usage

To use the charts, you need to add the Zazuko Helm repository using the following command:

helm repo add zazuko https://charts.zazuko.com

Development

Make sure to run the following command to make sure that the charts are valid:

helm lint zazuko/*

And that one to generate/update the README file for each chart:

./scripts/docs.sh

To preview a chart, you can use the following command:

CHART_NAME=trifid
helm template "zazuko/${CHART_NAME}" --values "zazuko/${CHART_NAME}/values.yaml"

To install a chart, you can use the following command:

CHART_NAME=trifid
helm install "${CHART_NAME}-release" "zazuko/${CHART_NAME}" --values "zazuko/${CHART_NAME}/values.yaml" # --namespace default

And to update the chart, you can use the following command:

CHART_NAME=trifid
helm upgrade "${CHART_NAME}-release" "zazuko/${CHART_NAME}" --values "zazuko/${CHART_NAME}/values.yaml" # --namespace default

To uninstall a chart, you can use the following command:

CHART_NAME=trifid
helm uninstall "${CHART_NAME}-release" # --namespace default

Releases

No releases published

Packages

No packages published

Languages

  • Smarty 94.4%
  • Shell 5.6%