Compare commits

..

10 Commits

Author SHA1 Message Date
Gitea Actions Bot
0e1b34b5fe Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 22s
Generated by CI/CD workflow on 2026-02-05 16:16:12

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-02-05 16:16:12 +00:00
Ultradesu
e5d9a78699 moved to manifests from chart
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 11s
Check with kubeconform / lint (push) Successful in 10s
Auto-update README / Generate README and Create MR (push) Successful in 10s
2026-02-05 18:15:37 +02:00
Ultradesu
1221dbf7b5 moved to manifests from chart
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 7s
Auto-update README / Generate README and Create MR (push) Successful in 11s
2026-02-05 18:10:16 +02:00
Ultradesu
42ebe4cbda moved to manifests from chart
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 14s
2026-02-05 18:06:00 +02:00
Ultradesu
4059bc1a70 moved to manifests from chart
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 7s
Auto-update README / Generate README and Create MR (push) Successful in 10s
2026-02-05 18:02:34 +02:00
Ultradesu
65f8056ef7 moved to manifests from chart
Some checks failed
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Has been cancelled
Auto-update README / Generate README and Create MR (push) Has been cancelled
2026-02-05 18:00:26 +02:00
Ultradesu
8fca12c674 moved to manifests from chart
Some checks failed
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Has been cancelled
Check with kubeconform / lint (push) Has been cancelled
Auto-update README / Generate README and Create MR (push) Has been cancelled
2026-02-05 17:59:22 +02:00
Ultradesu
51cc40377c moved to manifests from chart
Some checks failed
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Has been cancelled
Check with kubeconform / lint (push) Has been cancelled
Auto-update README / Generate README and Create MR (push) Has been cancelled
2026-02-05 17:57:22 +02:00
Ultradesu
ff58069789 moved to manifests from chart
Some checks failed
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Has been cancelled
Auto-update README / Generate README and Create MR (push) Has been cancelled
2026-02-05 17:55:41 +02:00
Ultradesu
6b5a120fc4 moved to manifests from chart
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 10s
Check with kubeconform / lint (push) Successful in 8s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-05 17:54:28 +02:00
3 changed files with 34 additions and 8 deletions

View File

@@ -13,6 +13,7 @@ spec:
password: "{{ .psql | trim }}" password: "{{ .psql | trim }}"
username: "n8n" username: "n8n"
encryptionkey: "{{ .enc_pass | trim }}" encryptionkey: "{{ .enc_pass | trim }}"
runnertoken: "{{ .runner_token | trim }}"
data: data:
- secretKey: psql - secretKey: psql
sourceRef: sourceRef:
@@ -36,3 +37,14 @@ spec:
metadataPolicy: None metadataPolicy: None
key: 18c92d73-9637-4419-8642-7f7b308460cb key: 18c92d73-9637-4419-8642-7f7b308460cb
property: fields[0].value property: fields[0].value
- secretKey: runner_token
sourceRef:
storeRef:
name: vaultwarden-login
kind: ClusterSecretStore
remoteRef:
conversionStrategy: Default
decodingStrategy: None
metadataPolicy: None
key: 18c92d73-9637-4419-8642-7f7b308460cb
property: fields[1].value

View File

@@ -25,6 +25,8 @@ spec:
- containerPort: 5678 - containerPort: 5678
name: http name: http
env: env:
- name: HOME
value: "/home/node"
- name: N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS - name: N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS
value: "true" value: "true"
- name: N8N_HOST - name: N8N_HOST
@@ -70,6 +72,11 @@ spec:
secretKeyRef: secretKeyRef:
name: credentials name: credentials
key: encryptionkey key: encryptionkey
- name: N8N_RUNNERS_AUTH_TOKEN
valueFrom:
secretKeyRef:
name: credentials
key: runnertoken
volumeMounts: volumeMounts:
- name: n8n-data - name: n8n-data
mountPath: /home/node/.n8n mountPath: /home/node/.n8n
@@ -101,7 +108,7 @@ spec:
persistentVolumeClaim: persistentVolumeClaim:
claimName: n8n-data claimName: n8n-data
securityContext: securityContext:
runAsUser: 3000 runAsUser: 1000
runAsGroup: 3000 runAsGroup: 1000
runAsNonRoot: true runAsNonRoot: true
fsGroup: 3000 fsGroup: 1000

View File

@@ -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
@@ -23,6 +23,8 @@ spec:
image: docker.n8n.io/n8nio/n8n:latest image: docker.n8n.io/n8nio/n8n:latest
command: ["n8n", "worker"] command: ["n8n", "worker"]
env: env:
- name: HOME
value: "/home/node"
- name: N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS - name: N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS
value: "true" value: "true"
- name: N8N_RUNNERS_ENABLED - name: N8N_RUNNERS_ENABLED
@@ -62,6 +64,11 @@ spec:
secretKeyRef: secretKeyRef:
name: credentials name: credentials
key: encryptionkey key: encryptionkey
- name: N8N_RUNNERS_AUTH_TOKEN
valueFrom:
secretKeyRef:
name: credentials
key: runnertoken
volumeMounts: volumeMounts:
- name: n8n-data - name: n8n-data
mountPath: /home/node/.n8n mountPath: /home/node/.n8n
@@ -87,7 +94,7 @@ spec:
persistentVolumeClaim: persistentVolumeClaim:
claimName: n8n-data claimName: n8n-data
securityContext: securityContext:
runAsUser: 3000 runAsUser: 1000
runAsGroup: 3000 runAsGroup: 1000
runAsNonRoot: true runAsNonRoot: true
fsGroup: 3000 fsGroup: 1000