main.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. ---
  2. - set_fact:
  3. rhel_subscription_pass: "{{ lookup('env', 'rhel_subscription_pass') | default(rhsub_pass | default(omit, True)) }}"
  4. rhel_subscription_pool: "{{ lookup('env', 'rhel_subscription_pool') | default(rhsub_pool | default('Red Hat OpenShift Container Platform, Premium*')) }}"
  5. rhel_subscription_user: "{{ lookup('env', 'rhel_subscription_user') | default(rhsub_user | default(omit, True)) }}"
  6. rhel_subscription_server: "{{ lookup('env', 'rhel_subscription_server') | default(rhsub_server | default(omit, True)) }}"
  7. - fail:
  8. msg: "This role is only supported for Red Hat hosts"
  9. when: ansible_distribution != 'RedHat'
  10. - fail:
  11. msg: The rhel_subscription_user variable is required for this role.
  12. when: rhel_subscription_user is not defined or not rhsub_user is not defined
  13. - fail:
  14. msg: The rhel_subscription_pass variable is required for this role.
  15. when: rhel_subscription_pass is not defined or not rhsub_pass is not defined
  16. - name: Install Red Hat Subscription manager
  17. yum:
  18. name: subscription-manager
  19. state: present
  20. register: result
  21. until: result is succeeded
  22. - name: Is host already registered?
  23. command: bash -c "subscription-manager version"
  24. register: rh_subscribed
  25. changed_when: "'not registered' in rh_subscribed.stdout"
  26. ignore_errors: yes
  27. - name: Register host
  28. redhat_subscription:
  29. username: "{{ rhel_subscription_user }}"
  30. password: "{{ rhel_subscription_pass }}"
  31. register: rh_subscription
  32. until: rh_subscription is succeeded
  33. when:
  34. - "'not registered' in rh_subscribed.stdout"
  35. - rhel_subscription_user is defined
  36. - rhel_subscription_pass is defined
  37. - fail:
  38. msg: 'Unable to register host with Red Hat Subscription Manager'
  39. when:
  40. - "'not registered' in rh_subscribed.stdout"
  41. - rh_subscription.failed
  42. - name: Determine if OpenShift Pool Already Attached
  43. command: bash -c "subscription-manager list --consumed --pool-only --matches '*OpenShift*' | grep {{ rhel_subscription_pool }}"
  44. register: openshift_pool_attached
  45. changed_when: rhel_subscription_pool not in openshift_pool_attached.stdout
  46. failed_when: openshift_pool_attached.rc == 2
  47. ignore_errors: yes
  48. - name: Retrieve the OpenShift Pool ID
  49. command: bash -c "subscription-manager list --available --pool-only --matches '*OpenShift*' | grep {{ rhel_subscription_pool }}"
  50. register: openshift_pool_retrieve
  51. changed_when: rhel_subscription_pool in openshift_pool_retrieve.stdout
  52. when: rhel_subscription_pool not in openshift_pool_attached.stdout
  53. ignore_errors: yes
  54. - fail:
  55. msg: "Unable to find pool matching {{ rhel_subscription_pool }} in available pools"
  56. when:
  57. - rhel_subscription_pool not in openshift_pool_attached.stdout
  58. - rhel_subscription_pool not in openshift_pool_retrieve.stdout
  59. - name: Attach to OpenShift Pool
  60. command: bash -c "subscription-manager attach --pool {{ rhel_subscription_pool }}"
  61. register: openshift_pool_attached
  62. changed_when: "'Successfully attached a subscription' in openshift_pool_attached.stdout"
  63. when: rhel_subscription_pool not in openshift_pool_attached.stdout
  64. - include_role:
  65. role: rhel_subscribe
  66. tasks_from: satellite
  67. when:
  68. - (rhel_subscription_server or rhsub_server) is defined
  69. - (rhel_subscription_server or rhsub_server)