Files
taskplaner/argocd/repo-secret.yaml
Thomas Richter 5a4d9ed5b9
Some checks failed
Build and Push / build (push) Has been cancelled
fix(07-01): use admin namespace for Gitea repository
- Change repo URL to admin/taskplaner (repo created under admin user)
- Update CI workflow image name to admin/taskplaner
- Update repo secret documentation with correct path
2026-02-03 15:20:47 +01:00

23 lines
733 B
YAML

# ArgoCD Repository Secret for TaskPlanner
# This file documents the secret structure. Apply using kubectl, not this file.
#
# To create the secret:
# PASSWORD=$(kubectl get secret gitea-repo -n argocd -o jsonpath='{.data.password}' | base64 -d)
# cat <<EOF | kubectl apply -f -
# apiVersion: v1
# kind: Secret
# metadata:
# name: taskplaner-repo
# namespace: argocd
# labels:
# argocd.argoproj.io/secret-type: repository
# stringData:
# type: git
# url: http://gitea-http.gitea.svc.cluster.local:3000/admin/taskplaner.git
# username: admin
# password: "$PASSWORD"
# EOF
#
# The secret allows ArgoCD to access the TaskPlanner Git repository
# using internal cluster networking (gitea-http.gitea.svc.cluster.local).