k8s/001-metallb/install.sh
2022-07-02 14:41:57 -04:00

14 lines
272 B
Bash
Executable file

#!/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