Skip to content

Commit

Permalink
test: skip pod identity tests for arc (#900)
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
  • Loading branch information
aramase authored May 26, 2022
1 parent 858b765 commit b893a25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/e2e/auto_rotation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ var _ = Describe("Test auto rotation of mount contents and K8s secrets", func()
if config.IsWindowsTest {
Skip("test case not supported for windows cluster")
}
if config.IsArcTest {
Skip("test is not supported in Arc cluster")
}

secretName := fmt.Sprintf("secret-pi-%s", utilrand.String(randomLength))
// create secret in keyvault
Expand Down
3 changes: 3 additions & 0 deletions test/e2e/pod_identity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ var _ = Describe("CSI inline volume test with aad-pod-identity", func() {
if config.IsWindowsTest {
Skip("test case not supported for windows cluster")
}
if config.IsArcTest {
Skip("test is not supported in Arc cluster")
}

By("Deploying aad-pod-identity")
helm.InstallPodIdentity()
Expand Down

0 comments on commit b893a25

Please sign in to comment.