main.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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: Satellite preparation
  20. command: "rpm -Uvh http://{{ rhel_subscription_server }}/pub/katello-ca-consumer-latest.noarch.rpm"
  21. args:
  22. creates: /etc/rhsm/ca/katello-server-ca.pem
  23. when: rhel_subscription_server is defined and rhel_subscription_server
  24. - name: RedHat subscriptions
  25. redhat_subscription:
  26. username: "{{ rhel_subscription_user }}"
  27. password: "{{ rhel_subscription_pass }}"
  28. - name: Retrieve the OpenShift Pool ID
  29. command: subscription-manager list --available --matches="{{ rhel_subscription_pool }}" --pool-only
  30. register: openshift_pool_id
  31. changed_when: False
  32. - name: Determine if OpenShift Pool Already Attached
  33. command: subscription-manager list --consumed --matches="{{ rhel_subscription_pool }}" --pool-only
  34. register: openshift_pool_attached
  35. changed_when: False
  36. when: openshift_pool_id.stdout == ''
  37. - fail:
  38. msg: "Unable to find pool matching {{ rhel_subscription_pool }} in available or consumed pools"
  39. when: openshift_pool_id.stdout == '' and openshift_pool_attached is defined and openshift_pool_attached.stdout == ''
  40. - name: Attach to OpenShift Pool
  41. command: subscription-manager subscribe --pool {{ openshift_pool_id.stdout_lines[0] }}
  42. when: openshift_pool_id.stdout != ''
  43. - include: enterprise.yml
  44. when: deployment_type in [ 'enterprise', 'atomic-enterprise', 'openshift-enterprise' ] and
  45. not openshift.common.is_atomic | bool