main.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. - name: RedHat subscriptions
  28. redhat_subscription:
  29. username: "{{ rhsub_user }}"
  30. password: "{{ rhsub_pass }}"
  31. register: rh_subscription
  32. until: rh_subscription | succeeded
  33. - name: Retrieve the OpenShift Pool ID
  34. command: subscription-manager list --available --matches="{{ rhsub_pool }}" --pool-only
  35. register: openshift_pool_id
  36. until: openshift_pool_id | succeeded
  37. changed_when: False
  38. - name: Determine if OpenShift Pool Already Attached
  39. command: subscription-manager list --consumed --matches="{{ rhsub_pool }}" --pool-only
  40. register: openshift_pool_attached
  41. until: openshift_pool_attached | succeeded
  42. changed_when: False
  43. when: openshift_pool_id.stdout == ''
  44. - fail:
  45. msg: "Unable to find pool matching {{ rhsub_pool }} in available or consumed pools"
  46. when: openshift_pool_id.stdout == '' and openshift_pool_attached is defined and openshift_pool_attached.stdout == ''
  47. - name: Attach to OpenShift Pool
  48. command: subscription-manager attach --pool {{ openshift_pool_id.stdout_lines[0] }}
  49. register: subscribe_pool
  50. until: subscribe_pool | succeeded
  51. when: openshift_pool_id.stdout != ''
  52. - include: enterprise.yml
  53. when:
  54. - not ostree_booted.stat.exists | bool