validate_facts.yml 548 B

12345678910111213
  1. ---
  2. - name: validate Dockerhub registry settings
  3. fail: msg="To use the dockerhub registry, you must provide the ansible_service_broker_registry_organization"
  4. when:
  5. - ansible_service_broker_registry_type == 'dockerhub'
  6. - not ansible_service_broker_registry_organization
  7. - name: validate RHCC registry settings
  8. fail: msg="To use the Red Hat Container Catalog registry, you must provide the ansible_service_broker_registry_url"
  9. when:
  10. - ansible_service_broker_registry_type == 'rhcc'
  11. - not ansible_service_broker_registry_url