k8s/helm/setup/001-metallb/install.sh

13 lines
254 B
Bash
Executable file

#!/bin/bash
CHART_VERSION=0.13.7
helm repo add metallb https://metallb.github.io/metallb
helm repo update
helm upgrade --install \
metallb \
metallb/metallb \
-n metallb-system \
--version ${CHART_VERSION} \
--create-namespace \
--cleanup-on-fail