Compare commits
1 Commits
main
...
auto-updat
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cd2dda509e |
@@ -85,11 +85,11 @@ spec:
|
|||||||
mountPath: /home/node/.n8n
|
mountPath: /home/node/.n8n
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 2000m
|
cpu: 100m
|
||||||
memory: 512Mi
|
memory: 128Mi
|
||||||
limits:
|
limits:
|
||||||
cpu: 4000m
|
cpu: 512m
|
||||||
memory: 2048Gi
|
memory: 512Mi
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /healthz
|
path: /healthz
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ metadata:
|
|||||||
app: n8n
|
app: n8n
|
||||||
component: worker
|
component: worker
|
||||||
spec:
|
spec:
|
||||||
replicas: 2
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app: n8n
|
app: n8n
|
||||||
@@ -26,8 +26,6 @@ spec:
|
|||||||
env:
|
env:
|
||||||
- name: HOME
|
- name: HOME
|
||||||
value: "/home/node"
|
value: "/home/node"
|
||||||
- name: NODES_EXCLUDE
|
|
||||||
value: "[]"
|
|
||||||
- name: N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS
|
- name: N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS
|
||||||
value: "true"
|
value: "true"
|
||||||
- name: N8N_RUNNERS_ENABLED
|
- name: N8N_RUNNERS_ENABLED
|
||||||
@@ -79,11 +77,11 @@ spec:
|
|||||||
mountPath: /home/node/.n8n
|
mountPath: /home/node/.n8n
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 2000m
|
cpu: 100m
|
||||||
memory: 512Mi
|
memory: 256Mi
|
||||||
limits:
|
limits:
|
||||||
cpu: 4000m
|
cpu: 1000m
|
||||||
memory: 2048Gi
|
memory: 1Gi
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
exec:
|
exec:
|
||||||
command:
|
command:
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
|||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
- external-secrets.yaml
|
|
||||||
- storage.yaml
|
- storage.yaml
|
||||||
- rbac.yaml
|
- rbac.yaml
|
||||||
- redis-deployment.yaml
|
- redis-deployment.yaml
|
||||||
|
|||||||
@@ -9,27 +9,19 @@ kind: ClusterRole
|
|||||||
metadata:
|
metadata:
|
||||||
name: n8n-clusterrole
|
name: n8n-clusterrole
|
||||||
rules:
|
rules:
|
||||||
# Core API group ("")
|
- apiGroups:
|
||||||
- apiGroups: [""]
|
- ""
|
||||||
resources: ["*"]
|
resources:
|
||||||
verbs: ["get", "list", "watch"]
|
- pods
|
||||||
|
- jobs
|
||||||
# Common built-in API groups
|
- cronjobs
|
||||||
- apiGroups: ["apps", "batch", "autoscaling", "extensions", "policy"]
|
- deployments
|
||||||
resources: ["*"]
|
- statefulsets
|
||||||
verbs: ["get", "list", "watch"]
|
verbs:
|
||||||
|
- get
|
||||||
- apiGroups: ["networking.k8s.io", "rbac.authorization.k8s.io", "apiextensions.k8s.io"]
|
- list
|
||||||
resources: ["*"]
|
- watch
|
||||||
verbs: ["get", "list", "watch"]
|
- create
|
||||||
|
|
||||||
- apiGroups: ["coordination.k8s.io", "discovery.k8s.io", "events.k8s.io"]
|
|
||||||
resources: ["*"]
|
|
||||||
verbs: ["get", "list", "watch"]
|
|
||||||
|
|
||||||
- apiGroups: ["storage.k8s.io", "admissionregistration.k8s.io", "authentication.k8s.io", "authorization.k8s.io"]
|
|
||||||
resources: ["*"]
|
|
||||||
verbs: ["get", "list", "watch"]
|
|
||||||
---
|
---
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRoleBinding
|
kind: ClusterRoleBinding
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteMany
|
- ReadWriteMany
|
||||||
storageClassName: longhorn
|
storageClassName: nfs-csi
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 10Gi
|
storage: 10Gi
|
||||||
@@ -1,4 +1,2 @@
|
|||||||
longhornUI:
|
longhornUI:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
persistence:
|
|
||||||
reclaimPolicy: "Retain"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user