feat: deploy n8n workflow automation #108

Open
gitea-admin wants to merge 3 commits from orion/auto/feat-deploy-n8n-workflow-automation-1780101994761 into main
Showing only changes of commit 7e3b6e6f83 - Show all commits
+32
View File
@@ -0,0 +1,32 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: n8n
namespace: apps
labels:
app: n8n
spec:
replicas: 1
selector:
matchLabels:
app: n8n
template:
metadata:
labels:
app: n8n
spec:
containers:
- name: n8n
image: n8nio/n8n:1.87.0
ports:
- containerPort: 5678
envFrom:
- secretRef:
name: n8n-secret
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi