Skip to content

Commit c684c0d

Browse files
authored
Update secret generation rune values (#4205)
1 parent 1abb7fe commit c684c0d

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

v2/internal/controllers/crd_redhatopenshift_openshiftcluster_20230401_test.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ func Test_RedHatOpenShift_OpenShiftCluster_CRUD(t *testing.T) {
3434
t.Parallel()
3535
t.Skip("flaky right now")
3636

37-
if *isLive {
38-
t.Skip("ARO cluster test requires ServicePrincipal creation and referenced in the cluster object.")
39-
}
40-
4137
tc := globalTestContext.ForTest(t)
4238
rg := tc.CreateTestResourceGroupAndWait()
4339

v2/internal/testcommon/resource_namer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func (n ResourceNamer) GeneratePassword() string {
145145
return n.GeneratePasswordOfLength(n.randomChars)
146146
}
147147

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

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

0 commit comments

Comments
 (0)