Skip to content

wemogy/helm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Helm Charts

The following Helm Charts are available:

How to use

Add the repository to your Helm repos.

helm repo add wemogy https://wemogy.github.io/helm/charts

Create an Image Pull Secret in the Namespace you want to deploy to. You can get the credential for your Pull Secret from wemogy.

kubectl create secret docker-registry wemogy-pull-secret \
  --docker-username=<USERNAME> \
  --docker-password=<PASSWORD> \
  --docker-server wemogycloudacr.azurecr.io

Install the Helm Chart.

helm install <YOUR_RELEASE_NAME> wemogy/<CHART_NAME> \
  --version <VERSION> \
  --values <VALUES> \
  --wait