2022-12-28 23:06:22 +00:00
|
|
|
#!/bin/bash
|
2023-06-26 16:05:09 +00:00
|
|
|
CHART_VERSION=1.4.2
|
2022-12-28 23:06:22 +00:00
|
|
|
|
|
|
|
helm repo add longhorn https://charts.longhorn.io
|
|
|
|
helm repo update
|
|
|
|
helm upgrade --install \
|
|
|
|
longhorn \
|
|
|
|
longhorn/longhorn \
|
|
|
|
-n longhorn-system \
|
|
|
|
--version ${CHART_VERSION} \
|
|
|
|
--create-namespace \
|
|
|
|
--cleanup-on-fail
|