Compare commits

..

13 Commits

Author SHA1 Message Date
Gitea Actions Bot
1488d9c228 Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 19s
Generated by CI/CD workflow on 2026-02-04 02:24:55

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-02-04 02:24:55 +00:00
ab
dd191c1c6e Update k8s/apps/n8n/values-searxng.yaml
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-04 02:24:35 +00:00
ab
0a101d7b98 Update k8s/apps/n8n/values-n8n.yaml
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 10s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-04 00:48:54 +00:00
ab
98d6d53b09 Update k8s/apps/n8n/values-n8n.yaml
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-04 00:38:36 +00:00
ab
0f28d93647 Update k8s/apps/n8n/values-n8n.yaml
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 6s
Check with kubeconform / lint (push) Successful in 4s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 00:27:37 +00:00
ab
16b3a7fdcb Update k8s/apps/n8n/external-secrets.yaml
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 00:26:59 +00:00
AB from home.homenet
8952396c9b Fixed n8n permissions
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 02:21:39 +02:00
ab
88e5b5f1b7 Update k8s/apps/n8n/external-secrets.yaml
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 23s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 00:15:46 +00:00
AB from home.homenet
6f8ca40108 Fixed n8n permissions
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 4s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-04 02:02:28 +02:00
AB from home.homenet
da37ae71be Fixed n8n permissions
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 6s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 02:00:54 +02:00
AB from home.homenet
a4a1fecbd1 Added storage for n8n
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 6s
Check with kubeconform / lint (push) Successful in 5s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 01:54:44 +02:00
AB from home.homenet
3564f5d9c3 Added storage for n8n
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 6s
Check with kubeconform / lint (push) Successful in 5s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 01:52:16 +02:00
AB from home.homenet
9df0a3c8b7 Added storage for n8n
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 5s
Auto-update README / Generate README and Create MR (push) Successful in 5s
2026-02-04 01:49:56 +02:00
5 changed files with 42 additions and 24 deletions

View File

@@ -10,10 +10,8 @@ spec:
template: template:
type: Opaque type: Opaque
data: data:
postgres-password: |- postgres-password: "{{ .psql | trim }}"
{{ .psql }} N8N_ENCRYPTION_KEY: "{{ .enc_pass | trim }}"
N8N_ENCRYPTION_KEY: |-
{{ .enc-pass }}
data: data:
- secretKey: psql - secretKey: psql
sourceRef: sourceRef:
@@ -26,7 +24,7 @@ spec:
metadataPolicy: None metadataPolicy: None
key: 2a9deb39-ef22-433e-a1be-df1555625e22 key: 2a9deb39-ef22-433e-a1be-df1555625e22
property: fields[13].value property: fields[13].value
- secretKey: enc-pass - secretKey: enc_pass
sourceRef: sourceRef:
storeRef: storeRef:
name: vaultwarden-login name: vaultwarden-login
@@ -36,4 +34,4 @@ spec:
decodingStrategy: None decodingStrategy: None
metadataPolicy: None metadataPolicy: None
key: 18c92d73-9637-4419-8642-7f7b308460cb key: 18c92d73-9637-4419-8642-7f7b308460cb
property: fields[0].value property: fields[0].value

View File

@@ -3,6 +3,7 @@ kind: Kustomization
resources: resources:
- external-secrets.yaml - external-secrets.yaml
- storage.yaml
helmCharts: helmCharts:
- name: n8n - name: n8n

12
k8s/apps/n8n/storage.yaml Normal file
View File

@@ -0,0 +1,12 @@
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: n8n-home
spec:
accessModes:
- ReadWriteMany
storageClassName: nfs-csi
resources:
requests:
storage: 10Gi

View File

@@ -1,21 +1,9 @@
webhook: nodeSelector:
url: https://n8n.hexor.cy kubernetes.io/hostname: master.tail2fe2d.ts.net
db: db:
type: postgresdb type: postgresdb
worker:
mode: queue
redis:
enabled: true
externalPostgresql:
existingSecret: postgres-password
host: "psql.psql.svc"
username: "n8n"
database: "n8n"
main: main:
resources: resources:
requests: requests:
@@ -24,6 +12,27 @@ main:
limits: limits:
cpu: 512m cpu: 512m
memory: 512Mi memory: 512Mi
persistence:
enabled: true
existingClaim: n8n-home
mountPath: /home/node/.n8n
worker:
mode: regular
webhook:
url: https://n8n.hexor.cy
redis:
enabled: true
existingEncryptionKeySecret: credentials
externalPostgresql:
existingSecret: credentials
host: "psql.psql.svc"
username: "n8n"
database: "n8n"
ingress: ingress:
enabled: true enabled: true
@@ -42,6 +51,3 @@ ingress:
hosts: hosts:
- '*.hexor.cy' - '*.hexor.cy'
nodeSelector:
kubernetes.io/hostname: master.tail2fe2d.ts.net

View File

@@ -1,7 +1,8 @@
config: config:
general: general:
instance_name: "HexorSearXNG" instance_name: "HexorSearXNG"
server:
limiter: false
valkey: valkey:
enabled: true enabled: true
nodeSelector: nodeSelector: