summaryrefslogtreecommitdiffstats
path: root/playbooks/byo/rhel_subscribe.yml
blob: 65c0b1c016eb8026b955261ae8b0a3aa973f9996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
- include: ../common/openshift-cluster/std_include.yml
  tags:
  - always

- name: Subscribe hosts, update repos and update OS packages
  hosts: l_oo_all_hosts
  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