main.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. - fail:
  3. msg: "This role is only supported for Red Hat hosts"
  4. when: ansible_distribution != 'RedHat'
  5. - name: Install Red Hat Subscription manager
  6. yum:
  7. name: subscription-manager
  8. state: present
  9. register: result
  10. until: result is succeeded
  11. - name: Is host already registered?
  12. command: "subscription-manager version"
  13. register: rh_subscribed
  14. changed_when: False
  15. - name: Register host
  16. redhat_subscription:
  17. username: "{{ rhsub_user }}"
  18. password: "{{ rhsub_pass }}"
  19. register: rh_subscription
  20. until: rh_subscription is succeeded
  21. when:
  22. - "'not registered' in rh_subscribed.stdout"
  23. - fail:
  24. msg: 'Unable to register host with Red Hat Subscription Manager'
  25. when:
  26. - "'not registered' in rh_subscribed.stdout"
  27. - rh_subscription.failed
  28. - name: Determine if OpenShift Pool Already Attached
  29. command: "subscription-manager list --consumed --pool-only --matches '*OpenShift*'"
  30. register: openshift_pool_attached
  31. changed_when: False
  32. ignore_errors: yes
  33. - name: Attach to OpenShift Pool
  34. command: "subscription-manager attach --pool {{ rhsub_pool }}"
  35. register: openshift_pool_attached
  36. changed_when: "'Successfully attached a subscription' in openshift_pool_attached.stdout"
  37. when: rhsub_pool not in openshift_pool_attached.stdout
  38. - import_tasks: satellite.yml
  39. when:
  40. - rhsub_server is defined
  41. - rhsub_server