Compare commits

...

3 Commits

Author SHA1 Message Date
gitea-admin c08c6d12e2 feat: deploy n8n workflow automation
Validate Manifests / validate (pull_request) Failing after 0s
2026-05-30 00:46:35 +00:00
gitea-admin 070120586d feat: deploy n8n workflow automation 2026-05-30 00:46:35 +00:00
gitea-admin 7e3b6e6f83 feat: deploy n8n workflow automation 2026-05-30 00:46:35 +00:00
3 changed files with 70 additions and 0 deletions
+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
+24
View File
@@ -0,0 +1,24 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: n8n
namespace: apps
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: traefik
rules:
- host: n8n.khalisio.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: n8n
port:
number: 80
tls:
- hosts:
- n8n.khalisio.com
secretName: n8n-tls
+14
View File
@@ -0,0 +1,14 @@
apiVersion: v1
kind: Service
metadata:
name: n8n
namespace: apps
labels:
app: n8n
spec:
selector:
app: n8n
ports:
- port: 80
targetPort: 5678
type: ClusterIP