Skip to content

Commit

Permalink
DO NOT SCAN
Browse files Browse the repository at this point in the history
  • Loading branch information
sashaCher committed Aug 25, 2021
1 parent a90ff6a commit 51e01f2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -101,21 +101,21 @@ pipeline {

stage('Scan Docker Image') {
parallel {
stage("Scan Docker Image for fixable issues") {
steps {
scanAndReport("conjur:${tagWithSHA()}", "HIGH", false)
}
}
// stage("Scan Docker Image for fixable issues") {
// steps {
// scanAndReport("conjur:${tagWithSHA()}", "HIGH", false)
// }
// }
stage("Scan Docker image for total issues") {
steps {
scanAndReport("conjur:${tagWithSHA()}", "NONE", true)
}
}
stage("Scan UBI-based Docker Image for fixable issues") {
steps {
scanAndReport("conjur-ubi:${tagWithSHA()}", "HIGH", false)
}
}
// stage("Scan UBI-based Docker Image for fixable issues") {
// steps {
// scanAndReport("conjur-ubi:${tagWithSHA()}", "HIGH", false)
// }
// }
stage("Scan UBI-based Docker image for total issues") {
steps {
scanAndReport("conjur-ubi:${tagWithSHA()}", "NONE", true)
Expand Down

0 comments on commit 51e01f2

Please sign in to comment.