- Add ArgoCD Application manifest for GitOps deployment - Update image pull secret with actual Gitea credentials - Enable automated sync with auto-prune and self-heal - Configure namespace as adopt-a-street with auto-creation - Add retry logic with exponential backoff for reliability 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
792 B
YAML
20 lines
792 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: regcred
|
|
type: kubernetes.io/dockerconfigjson
|
|
data:
|
|
.dockerconfigjson: eyJhdXRocyI6eyJnaXRlYS1naXRlYS1odHRwLnRhaWxkYjM0OTQudHMubmV0Ijp7InVzZXJuYW1lIjoid2lsbCIsInBhc3N3b3JkIjoiZnJhY2s2NjYiLCJhdXRoIjoiZDJsc2JEcm1yY2t6TjZOZz09In19fQ==
|
|
|
|
---
|
|
# IMPORTANT:
|
|
# 1. Replace [YOUR_GITEA_PASSWORD] with your actual Gitea password
|
|
# 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 regcred \
|
|
# --docker-server=gitea-gitea-http.taildb3494.ts.net \
|
|
# --docker-username=will \
|
|
# --docker-password=YOUR_GITEA_PASSWORD \
|
|
# --namespace=adopt-a-street \
|
|
# --dry-run=client -o yaml |