13 lines
251 B
Bash
13 lines
251 B
Bash
|
#!/bin/bash
|
||
|
CHART_VERSION=1.3.2
|
||
|
|
||
|
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
|