blob: 990ddd2f26affb45cceb5b0dd99e0f970f2c054d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- hosts: all
vars:
openshift_deployment_type: "{{ deployment_type }}"
roles:
- role: rhel_subscribe
when: deployment_type in ['atomic-enterprise', 'enterprise', 'openshift-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
|