main.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: Detecting Atomic Host Operating System
  3. stat:
  4. path: /run/ostree-booted
  5. register: ostree_booted
  6. - block:
  7. - name: Debug r_openshift_excluder_enable_docker_excluder
  8. debug:
  9. var: r_openshift_excluder_enable_docker_excluder
  10. - name: Debug r_openshift_excluder_enable_openshift_excluder
  11. debug:
  12. var: r_openshift_excluder_enable_openshift_excluder
  13. - name: Fail if invalid openshift_excluder_action provided
  14. fail:
  15. msg: "openshift_excluder role can only be called with 'enable' or 'disable'"
  16. when: r_openshift_excluder_action not in ['enable', 'disable']
  17. - name: Fail if r_openshift_excluder_service_type is not defined
  18. fail:
  19. msg: "r_openshift_excluder_service_type must be specified for this role"
  20. when: r_openshift_excluder_service_type is not defined
  21. - name: Fail if r_openshift_excluder_upgrade_target is not defined
  22. fail:
  23. msg: "r_openshift_excluder_upgrade_target must be provided when using this role for upgrades"
  24. when:
  25. - r_openshift_excluder_verify_upgrade | bool
  26. - r_openshift_excluder_upgrade_target is not defined
  27. - name: Include main action task file
  28. include_tasks: "{{ r_openshift_excluder_action }}.yml"
  29. when:
  30. - not ostree_booted.stat.exists | bool