Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This operation will scan a locally built docker image and upload the results to an Anchore Engine installation. If you are just looking to scan and not upload the results see scanLocalImage. By default the analyze operations do not return the analyzed results but that behavior can be changed by selecting Wait For Results.

...

Input NameInput CodeRequiredDescription
Anchore UserFDANCR_INP_USERYesThe Anchore User used when uploading the results.
Anchore PasswordFDANCR_INP_PASSWORDYesThe Anchore Password used when uploading the results.
Anchore UrlFDANCR_INP_URLYesThe API url for the Anchore Engine install. Typically http://yourhost:8228/v1
Image NameFDANCR_INP_IMAGE_NAMEYesThe full image tag to analyze. For example ubuntu:16.06 or myuser/myimage:latest
Wait For ResultsFDANCR_INP_WAIT_FOR_RESULTSYesShould the plugin wait for the results or simply start the upload and complete. If you want to use the Groovy Fail Condition or Plugin Outputs this needs to be true.
Groovy Fail ConditionFDANCR_INP_SCAN_FAIL_CONDITIONNo

Optional groovy script to determine if the scan should fail the workflow. Available variables include all FlexDeploy environment variables and the following scan result variables:

  • STATUS
  • FINAL_ACTION
  • STOP_COUNT
  • WARN_COUNT
  • ALL_COUNTS

See more information here for configuring the Groovy Fail Condition.

Scan TimeoutFDANCR_INP_TIMEOUTNoBy default the scan will timeout if it exceeds 900 seconds (15min). This is likely more than enough time but the timeout can be increased here if needed.

Outputs

See the main plugin page for outputs and groovy script validation.

Info
titleOutputs

These outputs will only be returned if Wait For Results is true

...

Anchore Engine Image Tags

This plugin uses Anchore CI Tools to perform local scanning/analyzing. Anchore Engine requires images to be pushed to a registry prior to analyzing. The Anchore CI Tools get around this by starting a temporary local Anchore container with a 'localbuild' registry. This allows you to scan and analyze images directly after building on your local docker engine.

What this means is that any images analyzed via this operation will be tagged in Anchore Engine with a localbuild registry, like so: 


Code Block
languagebash
#local image
company/ourapp:latest

#image tag in Anchore Engine
localbuild/company/ourapp:latest

...