main.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. - name: Retrieve the OpenShift Pool ID
  37. command: subscription-manager list --available --matches="{{ rhel_subscription_pool }}" --pool-only
  38. register: openshift_pool_id
  39. changed_when: False
  40. - name: Determine if OpenShift Pool Already Attached
  41. command: subscription-manager list --consumed --matches="{{ rhel_subscription_pool }}" --pool-only
  42. register: openshift_pool_attached
  43. changed_when: False
  44. when: openshift_pool_id.stdout == ''
  45. - fail:
  46. msg: "Unable to find pool matching {{ rhel_subscription_pool }} in available or consumed pools"
  47. when: openshift_pool_id.stdout == '' and openshift_pool_attached is defined and openshift_pool_attached.stdout == ''
  48. - name: Attach to OpenShift Pool
  49. command: subscription-manager subscribe --pool {{ openshift_pool_id.stdout_lines[0] }}
  50. when: openshift_pool_id.stdout != ''
  51. - include: enterprise.yml
  52. when:
  53. - deployment_type in [ 'enterprise', 'atomic-enterprise', 'openshift-enterprise' ]
  54. - not ostree_booted.stat.exists | bool