Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pkg/api/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1375,6 +1375,7 @@ const (
ClusterProfileAWSPerfScaleQE ClusterProfile = "aws-perfscale-qe"
ClusterProfileAWSPerfScaleLRCQE ClusterProfile = "aws-perfscale-lrc-qe"
ClusterProfileAWSRestrictedQE ClusterProfile = "aws-restricted-qe"
ClusterProfileAWSEUSC ClusterProfile = "aws-eusc"
ClusterProfileAWSOutpostQE ClusterProfile = "aws-outpost-qe"
ClusterProfileAWSChaos ClusterProfile = "aws-chaos"
ClusterProfileAWSManagedCSPIQE ClusterProfile = "aws-managed-cspi-qe"
Expand Down Expand Up @@ -1574,6 +1575,7 @@ func ClusterProfiles() []ClusterProfile {
ClusterProfileAWSPerfScaleQE,
ClusterProfileAWSPerfScaleLRCQE,
ClusterProfileAWSRestrictedQE,
ClusterProfileAWSEUSC,
ClusterProfileAWSChaos,
ClusterProfileAWSChinaQE,
ClusterProfileAWSManagedCSPIQE,
Expand Down Expand Up @@ -1792,6 +1794,7 @@ func (p ClusterProfile) ClusterType() string {
ClusterProfileAWSPerfScaleQE,
ClusterProfileAWSPerfScaleLRCQE,
ClusterProfileAWSRestrictedQE,
ClusterProfileAWSEUSC,
ClusterProfileAWSServerless,
ClusterProfileAWSStackrox,
ClusterProfileAWSOutpostQE,
Expand Down Expand Up @@ -2109,6 +2112,8 @@ func (p ClusterProfile) LeaseType() string {
return "aws-perfscale-lrc-qe-quota-slice"
case ClusterProfileAWSRestrictedQE:
return "aws-restricted-qe"
case ClusterProfileAWSEUSC:
return "aws-eusc"
case ClusterProfileAWSManagedCSPIQE:
return "aws-managed-cspi-qe-quota-slice"
case ClusterProfileAWSGovCloudQE:
Expand Down