From 7313d786dc94d2f240ff6ec10d160dee1ef752d1 Mon Sep 17 00:00:00 2001 From: Andy Sadler Date: Tue, 9 Apr 2024 13:14:49 -0500 Subject: [PATCH] Revert "add cluster profile for konflux workspaces" This cluster profile is no longer needed. It has no current users, and it will not be used in the future. This reverts commit 18b957af294ec2cf4a532188131ae6658c581f0c. Signed-off-by: Andy Sadler --- pkg/api/types.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkg/api/types.go b/pkg/api/types.go index 5469050bf05..9856eb23b7d 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -1329,7 +1329,6 @@ const ( ClusterProfileAWSEdgeInfra ClusterProfile = "aws-edge-infra" ClusterProfileRHOpenShiftEcosystem ClusterProfile = "rh-openshift-ecosystem" ClusterProfileODFAWS ClusterProfile = "odf-aws" - ClusterProfileKonfluxWorkspacesAWS ClusterProfile = "konfluxworkspaces-aws" ) // ClusterProfiles are all valid cluster profiles @@ -1463,7 +1462,6 @@ func ClusterProfiles() []ClusterProfile { ClusterProfileAWSEdgeInfra, ClusterProfileRHOpenShiftEcosystem, ClusterProfileODFAWS, - ClusterProfileKonfluxWorkspacesAWS, } } @@ -1516,8 +1514,7 @@ func (p ClusterProfile) ClusterType() string { ClusterProfileDevSandboxCIAWS, ClusterProfileQuayAWS, ClusterProfileAWSEdgeInfra, - ClusterProfileODFAWS, - ClusterProfileKonfluxWorkspacesAWS: + ClusterProfileODFAWS: return string(CloudAWS) case ClusterProfileAlibabaCloud, @@ -1914,8 +1911,6 @@ func (p ClusterProfile) LeaseType() string { return "rh-openshift-ecosystem-quota-slice" case ClusterProfileODFAWS: return "odf-aws-quota-slice" - case ClusterProfileKonfluxWorkspacesAWS: - return "konfluxworkspaces-aws-quota-slice" default: return "" }