main.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ---
  2. # TODO: Enhance redhat_subscription module
  3. # to make it able to attach to a pool
  4. # to make it able to enable repositories
  5. - fail:
  6. msg: "This role is only supported for Red Hat hosts"
  7. when: ansible_distribution != 'RedHat'
  8. - fail:
  9. msg: The rhsub_user variable is required for this role.
  10. when: rhsub_user is not defined or not rhsub_user
  11. - fail:
  12. msg: The rhsub_pass variable is required for this role.
  13. when: rhsub_pass is not defined or not rhsub_pass
  14. - name: Detecting Atomic Host Operating System
  15. stat:
  16. path: /run/ostree-booted
  17. register: ostree_booted
  18. - name: Satellite preparation
  19. command: "rpm -Uvh http://{{ rhsub_server }}/pub/katello-ca-consumer-latest.noarch.rpm"
  20. args:
  21. creates: /etc/rhsm/ca/katello-server-ca.pem
  22. when: rhsub_server is defined and rhsub_server
  23. - name: Install Red Hat Subscription manager
  24. yum:
  25. name: subscription-manager
  26. state: present
  27. register: result
  28. until: result | success
  29. - name: RedHat subscriptions
  30. redhat_subscription:
  31. username: "{{ rhsub_user }}"
  32. password: "{{ rhsub_pass }}"
  33. register: rh_subscription
  34. until: rh_subscription | succeeded
  35. - name: Retrieve the OpenShift Pool ID
  36. command: subscription-manager list --available --matches="{{ rhsub_pool }}" --pool-only
  37. register: openshift_pool_id
  38. until: openshift_pool_id | succeeded
  39. changed_when: False
  40. - name: Determine if OpenShift Pool Already Attached
  41. command: subscription-manager list --consumed --matches="{{ rhsub_pool }}" --pool-only
  42. register: openshift_pool_attached
  43. until: openshift_pool_attached | succeeded
  44. changed_when: False
  45. when: openshift_pool_id.stdout == ''
  46. - fail:
  47. msg: "Unable to find pool matching {{ rhsub_pool }} in available or consumed pools"
  48. when: openshift_pool_id.stdout == '' and openshift_pool_attached is defined and openshift_pool_attached.stdout == ''
  49. - name: Attach to OpenShift Pool
  50. command: subscription-manager attach --pool {{ openshift_pool_id.stdout_lines[0] }}
  51. register: subscribe_pool
  52. until: subscribe_pool | succeeded
  53. when: openshift_pool_id.stdout != ''
  54. - include_tasks: enterprise.yml
  55. when:
  56. - not ostree_booted.stat.exists | bool