diff --git a/argocd/values-argocd-server.yaml b/argocd/values-argocd-server.yaml
index dcaf9d8b1ee0f39b92a57bf4178e47a4f34eb0e4..058cb61fd8de24cc83017897647d7374ad07a49a 100644
--- a/argocd/values-argocd-server.yaml
+++ b/argocd/values-argocd-server.yaml
@@ -26,17 +26,6 @@ server:
     # Specifies token expiration duration
     users.session.duration: "24h"
 
-    repositories: |
-      - url: https://git.ncsa.illinois.edu/kooper/radiant-cluster.git
-        type: git
-        name: radiant-cluster
-        usernameSecret:
-          name: radiant-cluster
-          key: username
-        passwordSecret:
-          name: radiant-cluster
-          key: password
-
     # A dex connector configuration (optional). See SSO configuration documentation:
     # https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/sso
     # https://dexidp.io/docs/connectors/
diff --git a/charts/apps/templates/healthmonitor.yaml b/charts/apps/templates/healthmonitor.yaml
index 1ee0c23edd5e973f34d2632db15610e19aa76665..3578e49d3ac8de7fe49c8e3e765f26cfa60c9e4c 100644
--- a/charts/apps/templates/healthmonitor.yaml
+++ b/charts/apps/templates/healthmonitor.yaml
@@ -24,7 +24,7 @@ spec:
     syncOptions:
       - CreateNamespace=true
   source:
-    repoURL: https://git.ncsa.illinois.edu/kooper/radiant-cluster.git
+    repoURL: https://github.com/ncsa/radiant-cluster.git
     path: charts/healthmonitor
     targetRevision: {{ .Values.healthmonitor.targetRevision | quote }}
     helm:
diff --git a/terraform/modules/argocd/variables.tf b/terraform/modules/argocd/variables.tf
index f5e476d82bf5cbdd5a8bde72658dff6a696fb32d..58328a2c65b4023a755163e1414929e3da48ee07 100644
--- a/terraform/modules/argocd/variables.tf
+++ b/terraform/modules/argocd/variables.tf
@@ -87,7 +87,7 @@ variable "argocd_sync" {
 variable "argocd_repo_url" {
   type        = string
   description = "URL to pull argocd applications from"
-  default     = "https://git.ncsa.illinois.edu/kooper/radiant-cluster.git"
+  default     = "https://github.com/ncsa/radiant-cluster.git"
 }
 
 variable "argocd_annotations" {