Versions Compared

Key

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

...

  • The most common use case lets the policy bundle unequivocally determine failure.

    Code Block
    languagegroovy
    STATUS == "fail"
  • No warn or stop checks found

    Code Block
    languagegroovy
    (STOP_COUNT + WARN_COUNT) != 0
  • A script that is more lenient on non-master stream builds (could be only master stream is pushed to the registry and other streams are for local testing).

    Code Block
    languagegroovy
    //master is not allowed any stop checks whereas every other stream can have 5 or less
    FDBLD_STREAM_NAME == "master" ? STOP_COUNT > 0 : STOP_COUNT > 5

...

Workflow Configuration

Anchore is FlexDeploy's preferred choice when it comes to container scanning. As such, you can configure your project to scan the specified image without any configuration other than setting the below properties:

...