main.yml 1.0 KB

1234567891011121314151617181920212223
  1. ---
  2. openshift_master_admission_plugin_config:
  3. openshift.io/ImagePolicy:
  4. configuration:
  5. kind: ImagePolicyConfig
  6. apiVersion: v1
  7. # To require that all images running on the platform be imported first, you may uncomment the
  8. # following rule. Any image that refers to a registry outside of OpenShift will be rejected unless it
  9. # unless it points directly to an image digest (myregistry.com/myrepo/image@sha256:ea83bcf...) and that
  10. # digest has been imported via the import-image flow.
  11. #resolveImages: Required
  12. executionRules:
  13. - name: execution-denied
  14. # Reject all images that have the annotation images.openshift.io/deny-execution set to true.
  15. # This annotation may be set by infrastructure that wishes to flag particular images as dangerous
  16. onResources:
  17. - resource: pods
  18. - resource: builds
  19. reject: true
  20. matchImageAnnotations:
  21. - key: images.openshift.io/deny-execution
  22. value: "true"
  23. skipOnResolutionFailure: true