k8s/001-metallb/install.sh

14 lines
272 B
Bash
Raw Normal View History

2022-07-02 18:41:57 +00:00
#!/bin/bash
CHART_VERSION=0.11.0
helm repo add metallb https://metallb.github.io/metallb
helm repo update
helm upgrade --install \
metallb \
metallb/metallb \
-f values.yaml \
-n metallb-system \
--version ${CHART_VERSION} \
--create-namespace \
--cleanup-on-fail