Skip to content

Commit

Permalink
Update secret generation rune values (#4205)
Browse files Browse the repository at this point in the history
  • Loading branch information
super-harsh committed Aug 23, 2024
1 parent 1abb7fe commit c684c0d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ func Test_RedHatOpenShift_OpenShiftCluster_CRUD(t *testing.T) {
t.Parallel()
t.Skip("flaky right now")

if *isLive {
t.Skip("ARO cluster test requires ServicePrincipal creation and referenced in the cluster object.")
}

tc := globalTestContext.ForTest(t)
rg := tc.CreateTestResourceGroupAndWait()

Expand Down
2 changes: 1 addition & 1 deletion v2/internal/testcommon/resource_namer.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (n ResourceNamer) GeneratePassword() string {
return n.GeneratePasswordOfLength(n.randomChars)
}

var runes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789~!@#$%^&*()")
var runes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789~!@#$%^*()._-")

// GeneratePasswordOfLength generates and returns a non-deterministic password.
// This method does not use any seed value, so the returned password is never stable.
Expand Down

0 comments on commit c684c0d

Please sign in to comment.