Skip to content

Commit

Permalink
Merge pull request #2365 from yingzhanredhat/ying-automation
Browse files Browse the repository at this point in the history
OCM-10299 | ci: fix rosa-hcp-external-auth deploy failure
  • Loading branch information
openshift-merge-bot[bot] authored Aug 20, 2024
2 parents a331e74 + 67cdb6a commit 8ec1352
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/e2e/e2e_setup_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package e2e

import (
"fmt"
"path"
"time"

Expand Down Expand Up @@ -43,7 +44,7 @@ var _ = Describe("Cluster preparation", labels.Feature.Cluster, func() {
breakGlassCredList, err := client.BreakGlassCredential.ListBreakGlassCredentialsAndReflect(clusterID)
Expect(err).To(BeNil())
testDir := config.Test.OutputDir
kubeconfigFile := path.Join("%s/%s.kubeconfig", testDir, clusterID)
kubeconfigFile := path.Join(testDir, fmt.Sprintf("%s.kubeconfig", clusterID))

By("Get the issued credential")
for _, i := range breakGlassCredList.BreakGlassCredentials {
Expand Down

0 comments on commit 8ec1352

Please sign in to comment.