We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccd6771 + 6bd3a4e commit 291ab21Copy full SHA for 291ab21
Jenkinsfile
@@ -375,6 +375,10 @@ pipeline {
375
376
steps {
377
unstash 'version_info'
378
+ // Grant access to this Jenkins agent's IP to AWS security groups
379
+ // This is required for access to the internal docker registry
380
+ // from outside EC2.
381
+ grantIPAccess()
382
sh(
383
'summon -f ci/test_suites/authenticators_azure/secrets.yml ' +
384
'ci/test authenticators_azure'
@@ -392,6 +396,10 @@ pipeline {
392
396
cucumber_results*.json
393
397
'''
394
398
)
399
+ // Remove this Agent's IP from IPManager's prefix list
400
+ // There are a limited number of entries, so it remove it
401
+ // rather than waiting for it to expire.
402
+ removeIPAccess()
395
403
}
404
405
0 commit comments