send mail add

This commit is contained in:
2023-02-03 01:27:07 +00:00
parent 9338a1e675
commit 9f291418a6

View File

@@ -31,6 +31,9 @@ spec:
- name: IMAGE_PATH - name: IMAGE_PATH
description: Image or Path to be scanned by trivy. description: Image or Path to be scanned by trivy.
type: string type: string
results:
- name: scan
description: scan result
steps: steps:
- name: trivy-scan - name: trivy-scan
image: $(params.TRIVY_IMAGE) image: $(params.TRIVY_IMAGE)
@@ -38,9 +41,10 @@ spec:
script: | script: |
#!/usr/bin/env sh #!/usr/bin/env sh
export TRIVY_NON_SSL=true export TRIVY_NON_SSL=true
cmd="trivy --cache-dir . --skip-update $* $(params.IMAGE_PATH)" cmd="trivy --severity HIGH,CRITICAL --output scan.txt --cache-dir . --skip-update $* $(params.IMAGE_PATH)"
echo "Running trivy task with command below" echo "Running trivy task with command below"
echo "$cmd" echo "$cmd"
eval "$cmd" eval "$cmd"
printf "%s" "$(cat ./scan.txt)" > "$(results.scan.path)"
args: args:
- "$(params.ARGS)" - "$(params.ARGS)"