10 lines
264 B
Bash
Executable File
10 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$NAMESPACE" = "" ]; then
|
|
NAMESPACE=$(cat ../namespace)
|
|
fi
|
|
|
|
helm repo add geek-cookbook https://geek-cookbook.github.io/charts/
|
|
helm repo update
|
|
helm upgrade --install -n $NAMESPACE -f values.yml nodered geek-cookbook/node-red --version 10.3.2
|