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

13 lines
254 B
Bash
Raw Normal View History

2022-07-02 18:41:57 +00:00
#!/bin/bash
2022-12-28 23:06:22 +00:00
CHART_VERSION=0.13.7
2022-07-02 18:41:57 +00:00
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