summaryrefslogtreecommitdiffstats
path: root/playbooks/byo/vagrant.yml
blob: c89f8775b129f7aa6164a364a549ca65953b9b6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- 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