Compare commits

..

4 Commits

Author SHA1 Message Date
Gitea Actions Bot
dd334f25eb Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 23s
Generated by CI/CD workflow on 2026-02-05 15:48:17

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-02-05 15:48:17 +00:00
Ultradesu
3054a9242b 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 6s
Auto-update README / Generate README and Create MR (push) Successful in 17s
2026-02-05 17:47:38 +02:00
Ultradesu
4d095e2773 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 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-05 17:46:20 +02:00
Ultradesu
09562a6cb9 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 4s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-05 17:41:13 +02:00
7 changed files with 85 additions and 5 deletions

View File

@@ -10,8 +10,9 @@ spec:
template:
type: Opaque
data:
postgres-password: "{{ .psql | trim }}"
N8N_ENCRYPTION_KEY: "{{ .enc_pass | trim }}"
password: "{{ .psql | trim }}"
username: "n8n"
encryptionkey: "{{ .enc_pass | trim }}"
data:
- secretKey: psql
sourceRef:

View File

@@ -4,7 +4,7 @@ kind: Kustomization
resources:
- external-secrets.yaml
- plain/kustomization.yaml
- plain/
helmCharts:
# - name: n8n

View File

@@ -103,4 +103,5 @@ spec:
securityContext:
runAsUser: 1000
runAsGroup: 1000
runAsNonRoot: true
runAsNonRoot: true
fsGroup: 1000

View File

@@ -87,4 +87,5 @@ spec:
securityContext:
runAsUser: 1000
runAsGroup: 1000
runAsNonRoot: true
runAsNonRoot: true
fsGroup: 1000

View File

@@ -3,6 +3,8 @@ kind: Kustomization
resources:
- storage.yaml
- redis-deployment.yaml
- redis-service.yaml
- deployment-main.yaml
- deployment-worker.yaml
- service.yaml

View File

@@ -0,0 +1,57 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: n8n-redis
labels:
app: redis
component: n8n
spec:
replicas: 1
selector:
matchLabels:
app: redis
component: n8n
template:
metadata:
labels:
app: redis
component: n8n
spec:
containers:
- name: redis
image: redis:7-alpine
ports:
- containerPort: 6379
name: redis
command:
- redis-server
- --appendonly
- "yes"
- --save
- "900 1"
volumeMounts:
- name: redis-data
mountPath: /data
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 200m
memory: 256Mi
livenessProbe:
tcpSocket:
port: 6379
initialDelaySeconds: 30
periodSeconds: 10
readinessProbe:
exec:
command:
- redis-cli
- ping
initialDelaySeconds: 5
periodSeconds: 5
volumes:
- name: redis-data
emptyDir: {}

View File

@@ -0,0 +1,18 @@
---
apiVersion: v1
kind: Service
metadata:
name: n8n-redis
labels:
app: redis
component: n8n
spec:
selector:
app: redis
component: n8n
ports:
- name: redis
port: 6379
targetPort: 6379
protocol: TCP
type: ClusterIP