Removes verbose docs

This commit is contained in:
2026-03-28 19:30:27 -04:00
parent 036fa7ab33
commit 63276ef8ca
14 changed files with 51 additions and 3296 deletions

View File

@@ -118,18 +118,22 @@ kubectl apply -f k8s/ingress.yaml
### Update Image Reference
Edit `k8s/deployment.yaml` and `k8s/migrate-job.yaml` with your Gitea registry path:
Edit `k8s/deployment.yaml` and `k8s/migrate-job.yaml` with your registry path:
```yaml
# Add imagePullSecrets for Gitea authentication
imagePullSecrets:
- name: gitea-registry
# For public registries (GitHub Container Registry, Docker Hub public)
# No imagePullSecrets needed!
image: ghcr.io/your-username/turbovault:latest
# Update image path
image: gitea.example.com/username/turbovault:latest
# For private registries, add imagePullSecrets:
imagePullSecrets:
- name: registry-secret
image: your-registry.com/turbovault:latest
```
**See [k8s/GITEA_SETUP.md](../k8s/GITEA_SETUP.md) for complete Gitea registry setup guide.**
**Default:** Use GitHub Container Registry (ghcr.io) - free and built-in.
**See:** [k8s/README.md](../k8s/README.md) for registry setup details.
---