brew install kubernetes-helm
helm init --client-only
Click the fork button
export username=... ;# your Github username
git clone git@github.com:${username}/secrets.git
cd my-app
helm template .
helm template . --set greeting='Hi KubeCon'
helm package my-app
helm repo index .
git add index.yaml *.tgz
git commit -m "Publish"
git push
Open Github and enable website https://github.com/${username}/helm/settings
helm repo add gitops-workshop https://${username}.github.io/helm/
helm fetch gitops-workshop/my-app
helm repo remove gitops-workshop