Gluttony-Cluster/node-red/node-red-deployment.yaml
Tyler Perkins ff4110e851
All checks were successful
continuous-integration/drone/push Build is passing
Change security context
2023-11-01 19:55:15 -04:00

31 lines
551 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
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