.dive-ci 551 B

1234567891011121314
  1. rules:
  2. # If the efficiency is measured below X%, mark as failed.
  3. # Expressed as a ratio between 0-1.
  4. lowestEfficiency: 0.99
  5. # If the amount of wasted space is at least X or larger than X, mark as failed.
  6. # Expressed in B, KB, MB, and GB.
  7. highestWastedBytes: 15MB
  8. # If the amount of wasted space makes up for X% or more of the image, mark as failed.
  9. # Note: the base image layer is NOT included in the total image size.
  10. # Expressed as a ratio between 0-1; fails if the threshold is met or crossed.
  11. highestUserWastedPercent: 0.02