Gluttony-Cluster/node-red/node-red-deployment.yaml
Tyler Perkins 9057cb0879
All checks were successful
continuous-integration/drone/push Build is passing
Add node red
2023-11-01 19:48:27 -04:00

29 lines
540 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: node-red
namespace: node-red-ns
spec:
replicas: 1
selector:
matchLabels:
app: node-red
template:
metadata:
labels:
app: node-red
spec:
containers:
- name: freshrss
image: nodered/node-red
ports:
- containerPort: 1880
volumeMounts:
- name: node-red-data
mountPath: /data
volumes:
- name: node-red-data
persistentVolumeClaim:
claimName: node-red-pvc