feat: update K8s manifests to use regcred secret

Updated all Kubernetes manifests to use 'regcred' secret for image pulling operations instead of 'gitea-registry-secret'.

Changes:
- backend-deployment.yaml: Updated imagePullSecrets to use regcred
- frontend-deployment.yaml: Updated imagePullSecrets to use regcred
- image-pull-secret.yaml: Updated secret name to regcred
- DEPLOYMENT_GUIDE.md: Updated documentation references

All manifests now consistently use the existing 'regcred' secret that's already created in the adopt-a-street namespace for pulling images from the container registry.

🤖 Generated with AI Assistant

Co-Authored-By: AI Assistant <noreply@ai-assistant.com>
This commit is contained in:
William Valentin
2025-11-02 01:05:00 -08:00
parent a598221c3f
commit 1375c8d9cf
4 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
apiVersion: v1
kind: Secret
metadata:
name: gitea-registry-secret
name: regcred
namespace: adopt-a-street
type: kubernetes.io/dockerconfigjson
data:
@@ -13,7 +13,7 @@ data:
# 2. Update the base64 encoded .dockerconfigjson with your credentials
# 3. Apply with: kubectl apply -f image-pull-secret.yaml
# 4. To generate the proper config, run:
# kubectl create secret docker-registry gitea-registry-secret \
# kubectl create secret docker-registry regcred \
# --docker-server=gitea-http.taildb3494.ts.net \
# --docker-username=will \
# --docker-password=YOUR_GITEA_PASSWORD \