Gluttony-Cluster/node-red/node-red-deployment.yaml

31 lines
551 B
YAML
Raw Normal View History

2023-11-01 23:48:27 +00:00
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
2023-11-01 23:55:15 +00:00
securityContext:
fsGroup: 1000
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
2023-11-01 23:48:27 +00:00