@@ -3,7 +3,6 @@ import Zenko from 'world/Zenko';
3
3
import ZenkoDrctl from './dr/drctl' ;
4
4
import {
5
5
createSecret ,
6
- deletePodsByLabel ,
7
6
displayCRStatus ,
8
7
getDRSink ,
9
8
getDRSource ,
@@ -74,7 +73,7 @@ async function installPRA(world: Zenko, sinkS3Endpoint = 'http://s3.zenko.local'
74
73
prometheusDisableTls : true ,
75
74
forceRotateServiceCredentials : world . praInstallCount > 0 ,
76
75
...kafkaExternalIpOption ,
77
- timeout
76
+ timeout,
78
77
} ) ;
79
78
}
80
79
@@ -165,15 +164,13 @@ async function waitForPhase(
165
164
}
166
165
167
166
const installTimeout = 360000 ;
168
- Given ( 'a DR installed' , { timeout : installTimeout } , async function ( this : Zenko ) {
167
+ Given ( 'a DR installed' , { timeout : installTimeout + 2000 } , async function ( this : Zenko ) {
169
168
Identity . useIdentity ( IdentityEnum . ACCOUNT , Zenko . sites [ 'source' ] . accountName ) ;
170
169
const credentials = Identity . getCurrentCredentials ( ) ;
171
170
await createSecret ( this , 'drctl-s3-creds' , {
172
171
accessKey : Buffer . from ( credentials . accessKeyId ) . toString ( 'base64' ) ,
173
172
secretAccessKey : Buffer . from ( credentials . secretAccessKey ) . toString ( 'base64' ) ,
174
173
} ) ;
175
- await deletePodsByLabel ( this ,
176
- 'app.kubernetes.io/name=sorbet-fwd-user-create,app.kubernetes.io/instance=end2end-pra' ) ;
177
174
await installPRA ( this , undefined , `${ installTimeout . toString ( ) } ms` ) ;
178
175
this . praInstallCount += 1 ;
179
176
return ;
0 commit comments