Files
gooseek/backend/deploy/k8s/k3s-registries.yaml
home e64567a224
Some checks failed
Build and Deploy GooSeek / build-and-deploy (push) Has been cancelled
fix: file-svc PVC use ReadWriteOnce, add k3s registries config
- Change file-svc PVC from ReadWriteMany to ReadWriteOnce (local-path compatible)
- Set file-svc replicas to 1 (RWO limitation)
- Add k3s-registries.yaml for insecure private registry config

Made-with: Cursor
2026-03-02 22:31:04 +03:00

15 lines
403 B
YAML

# K3s Private Registry Configuration
# This file should be copied to /etc/rancher/k3s/registries.yaml on the K3s node
# After copying, restart K3s: sudo systemctl restart k3s
mirrors:
"10.43.193.43:5000":
endpoint:
- "http://10.43.193.43:5000"
"registry.gooseek:5000":
endpoint:
- "http://registry.gooseek:5000"
"localhost:5000":
endpoint:
- "http://localhost:5000"