Skip to content

Instantly share code, notes, and snippets.

@usamaahmadkhan
Created March 9, 2022 19:47
Show Gist options
  • Save usamaahmadkhan/eb79305314ccc09fe58159dfc4e39394 to your computer and use it in GitHub Desktop.
Save usamaahmadkhan/eb79305314ccc09fe58159dfc4e39394 to your computer and use it in GitHub Desktop.
Deploy Helm Operator quickly
HELM_CHART_VERSION=1.4.2
HELM_OPERATOR_NAMESPACE=helm
kubectl create namespace $(HELM_OPERATOR_NAMESPACE)
helm repo add fluxcd https://charts.fluxcd.io
helm upgrade --install helm-operator fluxcd/helm-operator --version $(HELM_CHART_VERSION) --wait --set helm.versions=v3 --namespace $(HELM_OPERATOR_NAMESPACE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment