main.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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('env', 'rhel_subscription_pool') | default(rhsub_pool | default('Red Hat OpenShift Container Platform, Premium*')) }}"
  7. rhel_subscription_user: "{{ lookup('env', 'rhel_subscription_user') | default(rhsub_user | default(omit, True)) }}"
  8. rhel_subscription_pass: "{{ lookup('env', 'rhel_subscription_pass') | default(rhsub_pass | default(omit, True)) }}"
  9. rhel_subscription_server: "{{ lookup('env', 'rhel_subscription_server') | default(rhsub_server | default(omit, True)) }}"
  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. register: result
  33. until: result | success
  34. - name: RedHat subscriptions
  35. redhat_subscription:
  36. username: "{{ rhel_subscription_user }}"
  37. password: "{{ rhel_subscription_pass }}"
  38. register: rh_subscription
  39. until: rh_subscription | succeeded
  40. - name: Retrieve the OpenShift Pool ID
  41. command: subscription-manager list --available --matches="{{ rhel_subscription_pool }}" --pool-only
  42. register: openshift_pool_id
  43. until: openshift_pool_id | succeeded
  44. changed_when: False
  45. - name: Determine if OpenShift Pool Already Attached
  46. command: subscription-manager list --consumed --matches="{{ rhel_subscription_pool }}" --pool-only
  47. register: openshift_pool_attached
  48. until: openshift_pool_attached | succeeded
  49. changed_when: False
  50. when: openshift_pool_id.stdout == ''
  51. - fail:
  52. msg: "Unable to find pool matching {{ rhel_subscription_pool }} in available or consumed pools"
  53. when: openshift_pool_id.stdout == '' and openshift_pool_attached is defined and openshift_pool_attached.stdout == ''
  54. - name: Attach to OpenShift Pool
  55. command: subscription-manager attach --pool {{ openshift_pool_id.stdout_lines[0] }}
  56. register: subscribe_pool
  57. until: subscribe_pool | succeeded
  58. when: openshift_pool_id.stdout != ''
  59. - include_tasks: enterprise.yml
  60. when:
  61. - deployment_type == 'openshift-enterprise'
  62. - not ostree_booted.stat.exists | bool