summaryrefslogtreecommitdiffstats
path: root/roles/contiv/tasks/pkgMgrInstallers/centos-install.yml
blob: 91e6aadf3ce18ae2937df02230c31c581a8fcc93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
- name: PkgMgr RHEL/CentOS | Install net-tools pkg for route
  yum:
    pkg=net-tools
    state=latest

- name: PkgMgr RHEL/CentOS | Get openstack ocata rpm
  get_url:
    url: https://repos.fedorapeople.org/repos/openstack/openstack-ocata/rdo-release-ocata-2.noarch.rpm
    dest: /tmp/rdo-release-ocata-2.noarch.rpm
    validate_certs: False
  environment:
    http_proxy: "{{ http_proxy|default('') }}"
    https_proxy: "{{ https_proxy|default('') }}"
    no_proxy: "{{ no_proxy|default('') }}"
  tags:
    - ovs_install

- name: PkgMgr RHEL/CentOS | Install openstack ocata rpm
  yum: name=/tmp/rdo-release-ocata-2.noarch.rpm state=present
  tags:
    - ovs_install

- name: PkgMgr RHEL/CentOS | Install ovs
  yum:
    pkg=openvswitch-2.5.0-2.el7.x86_64
    state=present
  environment:
    http_proxy: "{{ http_proxy|default('') }}"
    https_proxy: "{{ https_proxy|default('') }}"
    no_proxy: "{{ no_proxy|default('') }}"
  tags:
    - ovs_install