Skip to content

Commit

Permalink
chore: change azure cluster name (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
yashmehrotra authored Nov 14, 2023
1 parent e208515 commit c90edee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/tenant/tenant.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func getClusterName(cloud v1.CloudProvider) string {
// TODO: Take this from config
switch cloud {
case v1.AZURE:
return "azure-internal-prod"
return "workload-prod-eu-01"
case v1.AWS:
return "aws-demo"
}
Expand All @@ -65,7 +65,7 @@ func getClusterName(cloud v1.CloudProvider) string {
func getHost(cloud v1.CloudProvider, tenantID string) string {
switch cloud {
case v1.AZURE:
return fmt.Sprintf("mission-control.%s.internal-prod.flanksource.com", tenantID)
return fmt.Sprintf("mc.%s.workload-prod-eu-01.flanksource.com", tenantID)
case v1.AWS:
return ""
default:
Expand Down

0 comments on commit c90edee

Please sign in to comment.