main.yml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. - set_fact:
  6. rhel_subscription_pool: "{{ lookup('oo_option', 'rhel_subscription_pool') | default(rhsub_pool, True) | default('Red Hat OpenShift Container Platform, Premium*', True) }}"
  7. rhel_subscription_user: "{{ lookup('oo_option', 'rhel_subscription_user') | default(rhsub_user, True) | default(omit, True) }}"
  8. rhel_subscription_pass: "{{ lookup('oo_option', 'rhel_subscription_pass') | default(rhsub_pass, True) | default(omit, True) }}"
  9. rhel_subscription_server: "{{ lookup('oo_option', 'rhel_subscription_server') | default(rhsub_server) }}"
  10. - fail:
  11. msg: "This role is only supported for Red Hat hosts"
  12. when: ansible_distribution != 'RedHat'
  13. - fail:
  14. msg: Either rhsub_user or the rhel_subscription_user env variable are required for this role.
  15. when: rhel_subscription_user is not defined
  16. - fail:
  17. msg: Either rhsub_pass or the rhel_subscription_pass env variable are required for this role.
  18. when: rhel_subscription_pass is not defined
  19. - name: Detecting Atomic Host Operating System
  20. stat:
  21. path: /run/ostree-booted
  22. register: ostree_booted
  23. - name: Satellite preparation
  24. command: "rpm -Uvh http://{{ rhel_subscription_server }}/pub/katello-ca-consumer-latest.noarch.rpm"
  25. args:
  26. creates: /etc/rhsm/ca/katello-server-ca.pem
  27. when: rhel_subscription_server is defined and rhel_subscription_server
  28. - name: Install Red Hat Subscription manager
  29. yum:
  30. name: subscription-manager
  31. state: present
  32. - name: RedHat subscriptions
  33. redhat_subscription:
  34. username: "{{ rhel_subscription_user }}"
  35. password: "{{ rhel_subscription_pass }}"
  36. register: rh_subscription
  37. until: rh_subscription | succeeded
  38. - name: Retrieve the OpenShift Pool ID
  39. command: subscription-manager list --available --matches="{{ rhel_subscription_pool }}" --pool-only
  40. register: openshift_pool_id
  41. until: openshift_pool_id | succeeded
  42. changed_when: False
  43. - name: Determine if OpenShift Pool Already Attached
  44. command: subscription-manager list --consumed --matches="{{ rhel_subscription_pool }}" --pool-only
  45. register: openshift_pool_attached
  46. until: openshift_pool_attached | succeeded
  47. changed_when: False
  48. when: openshift_pool_id.stdout == ''
  49. - fail:
  50. msg: "Unable to find pool matching {{ rhel_subscription_pool }} in available or consumed pools"
  51. when: openshift_pool_id.stdout == '' and openshift_pool_attached is defined and openshift_pool_attached.stdout == ''
  52. - name: Attach to OpenShift Pool
  53. command: subscription-manager subscribe --pool {{ openshift_pool_id.stdout_lines[0] }}
  54. register: subscribe_pool
  55. until: subscribe_pool | succeeded
  56. when: openshift_pool_id.stdout != ''
  57. - include: enterprise.yml
  58. when:
  59. - deployment_type == 'openshift-enterprise'
  60. - not ostree_booted.stat.exists | bool