main.yml 1.1 KB

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