blob: a16572a5d74f376e33bb7261110cecd9d2b58a98 (
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
|
---
- hosts: kube-node
remote_user: root
vars_files:
- "{{ xci_path }}/xci/var/opnfv.yml"
roles:
- role: prepare-kube-nodes-osh
- hosts: opnfv
remote_user: root
vars_files:
- "{{ xci_path }}/xci/var/opnfv.yml"
roles:
- role: prepare-opnfvhost-osh
- role: prepare-osh
- role: install-osh-mini
when: xci_flavor == 'mini'
environment:
- CONTAINER_DISTRO_NAME: "{{ container_distro_name }}"
- CONTAINER_DISTRO_VERSION: "{{ container_distro_version }}"
- OPENSTACK_RELEASE: "{{ openstack_osh_version }}"
- role: install-osh-noha
when: xci_flavor == 'noha'
|