Compare commits

..

4 Commits

Author SHA1 Message Date
Gitea Actions Bot
b9ca31b9a3 Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 18s
Generated by CI/CD workflow on 2026-02-04 15:10:57

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-02-04 15:10:57 +00:00
Ultradesu
ecd475e83d Added init cont fixing permissions
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 6s
2026-02-04 17:10:30 +02:00
ab
69aed3fe23 Update k8s/core/kube-system-custom/nfs-storage.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 5s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-02-04 15:07:27 +00:00
Ultradesu
d74479c935 Fixed SC
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 5s
2026-02-04 17:04:46 +02:00
2 changed files with 30 additions and 2 deletions

View File

@@ -21,6 +21,28 @@ podSecurityContext:
fsGroup: 1000
fsGroupChangePolicy: "OnRootMismatch"
# Fix NFS permission issues - required for NFS volumes
initContainers:
- name: fix-permissions
image: busybox:1.35
command:
- sh
- -c
- |
echo "Fixing permissions for NFS volume..."
if [ ! -d "/home/node/.n8n" ]; then
mkdir -p /home/node/.n8n
fi
chown -R 1000:1000 /home/node/.n8n
chmod -R 775 /home/node/.n8n
echo "Permissions fixed: $(ls -ld /home/node/.n8n)"
volumeMounts:
- name: node-modules
mountPath: /home/node/.n8n
securityContext:
runAsUser: 0
runAsGroup: 0
worker:
mode: regular

View File

@@ -10,5 +10,11 @@ parameters:
reclaimPolicy: Retain
volumeBindingMode: Immediate
mountOptions:
- vers=4
- hard
- nfsvers=4.1
- rsize=1048576
- wsize=1048576
- timeo=14
- intr
- bg
- soft
- noatime