stuff
This commit is contained in:
9
nodered/install.sh
Executable file
9
nodered/install.sh
Executable file
@ -0,0 +1,9 @@
|
||||
#!/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
|
8
nodered/values.yml
Normal file
8
nodered/values.yml
Normal file
@ -0,0 +1,8 @@
|
||||
env:
|
||||
NODE_RED_ENABLE_PROJECTS: true
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
storageClass: nfs-client
|
||||
accessMode: ReadWriteOnce
|
||||
size: 1Gi
|
Reference in New Issue
Block a user