diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml index fe7ba43320..c13667f231 100644 --- a/.github/workflows/scan.yml +++ b/.github/workflows/scan.yml @@ -36,7 +36,7 @@ jobs: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: image: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-arm64' - args: --platform=linux/arm64 --severity-threshold=high --exclude-base-image-vulns --file=./build/Dockerfile -fail-on=upgradable + args: --platform=linux/arm64 --org=${{ secrets.SNYK_ORG_ID }} --severity-threshold=high --exclude-base-image-vulns --file=./build/Dockerfile -fail-on=upgradable - name: Build an image from Dockerfile (linux/amd64) run: | @@ -52,5 +52,5 @@ jobs: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: image: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-amd64' - args: --platform=linux/amd64 --severity-threshold=high --exclude-base-image-vulns --file=./build/Dockerfile -fail-on=upgradable + args: --platform=linux/amd64 --org=${{ secrets.SNYK_ORG_ID }} --severity-threshold=high --exclude-base-image-vulns --file=./build/Dockerfile -fail-on=upgradable diff --git a/Jenkinsfile b/Jenkinsfile index 846fda3e5d..99c3d9f7c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -552,6 +552,31 @@ pipeline { clusterRunner('cluster10') } } + stage('cluster11') { + steps { + clusterRunner('cluster11') + } + } + stage('cluster12') { + steps { + clusterRunner('cluster12') + } + } + stage('cluster13') { + steps { + clusterRunner('cluster13') + } + } + stage('cluster14') { + steps { + clusterRunner('cluster14') + } + } + stage('cluster15') { + steps { + clusterRunner('cluster15') + } + } } } }