1234567891011121314 |
- ---
- - hosts: all
- vars:
- deployment_type: "{{ openshift_deployment_type }}"
- roles:
- - role: rhel_subscribe
- when: openshift_deployment_type == "enterprise" and
- ansible_distribution == "RedHat" and
- lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
- default('no', True) | lower in ['no', 'false']
- - openshift_repos
- - os_update_latest
- - include: config.yml
|