Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 3 Next »

Download the helm repo

helm repo add node-red https://schwarzit.github.io/node-red-chart/

create namespace

kubectl create namespace node-red


helm repo list


helm repo update
helm pull  node-red/node-red --version 0.20.3 

extract the files

 tar zxvf node-red-0.20.3.tgz


cd node-red

 cd cd node-red

edit file values.yaml

 vi values.yaml


enable the persistence: ture

change the values presistent:true
persistence:
  # -- Use persistent volume to store data
  enabled: true

enable the path: /nodered

hosts:
    #  Ingress accepted hostnames
    - host: demobot.expertflow.com
      paths:
          # -- The base path
        - path: /nodered

helm install 

helm upgrade --install=true --namespace=node-red --values=node-red/values.yaml ef-node-red node-red
kubectl -n node-red patch svc ef-node-red -p '{"spec": {"type": "NodePort"}}' 
 http://192.168.2.84:<port>
  • No labels