migrate all Argo CD repo sources from Legion Gitea to GKE Gitea

This commit is contained in:
Will Anderson
2026-05-05 02:25:14 -05:00
parent 804060c958
commit 479190ef47
27 changed files with 33 additions and 35 deletions
+3 -3
View File
@@ -36,7 +36,7 @@ resource "helm_release" "argocd" {
server.insecure: true # TLS terminated at Traefik
repositories:
gitea-infrastructure:
url: http://gitea.git.svc.cluster.local:3000/will/infrastructure.git
url: https://git.neuralplatform.ai/will/infrastructure.git
name: infrastructure
type: git
YAML
@@ -96,7 +96,7 @@ resource "kubernetes_secret" "argocd_gitea_repo" {
data = {
type = "git"
url = "http://gitea.git.svc.cluster.local:3000/will/infrastructure.git"
url = "https://git.neuralplatform.ai/will/infrastructure.git"
username = "will"
password = var.gitea_api_token
}
@@ -136,7 +136,7 @@ resource "kubernetes_manifest" "argocd_root_app" {
spec = {
project = "default"
source = {
repoURL = "http://gitea.git.svc.cluster.local:3000/will/infrastructure.git"
repoURL = "https://git.neuralplatform.ai/will/infrastructure.git"
targetRevision = "main"
path = "servers/legion/apps"
}