Skip to content
Closed
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
4 changes: 3 additions & 1 deletion test/e2e/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ var expectedKasManagementComponents = []string{
"cloud-controller-manager",
"olm-collect-profiles",
"aws-ebs-csi-driver-operator",
"azure-disk-csi-driver-operator",

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirmed with Jan Safranek this needed access to the management KAS here.

"azure-file-csi-driver-operator",
"karpenter",
"karpenter-operator",
"featuregate-generator",
Expand Down Expand Up @@ -967,7 +969,7 @@ func EnsureAllRoutesUseHCPRouter(t *testing.T, ctx context.Context, hostClient c

func EnsureNetworkPolicies(t *testing.T, ctx context.Context, c crclient.Client, hostedCluster *hyperv1.HostedCluster) {
t.Run("EnsureNetworkPolicies", func(t *testing.T) {
if hostedCluster.Spec.Platform.Type != hyperv1.AWSPlatform {
if hostedCluster.Spec.Platform.Type != hyperv1.AWSPlatform && hostedCluster.Spec.Platform.Type != hyperv1.AzurePlatform {
t.Skipf("test only supported on AWS platform, saw %s", hostedCluster.Spec.Platform.Type)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs updated

}

Expand Down