aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/install_samplevnf/tasks/main.yml
blob: ad147b00f95da54a4d9af47669da7848b7a9683b (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright (c) 2017 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
- set_fact:
    vnf_build_dir: "{{ samplevnf_path }}/VNFs/{{ vnf_build_dirs[vnf_name] }}"

- set_fact:
    vnf_app_name: "{{ vnf_app_names[vnf_name] }}"

- name: Install extra build dependencies
  action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  with_items: "{{ vnf_build_dependencies.get(vnf_name, {}).get(ansible_os_family, []) }}"

- name: set build env vars
  set_fact:
      build_env_vars:
        RTE_SDK: "{{ RTE_SDK }}"
        RTE_TARGET: "{{ RTE_TARGET }}"
        VNF_CORE: "{{ samplevnf_path }}"

- name: set soft CRC and GEN_DECAP_IPV6_TO_IPV4_CKSUM for PROX when building in VM
  set_fact:
      build_env_vars: "{{ build_env_vars|combine({'crc': 'soft'})|combine({'GEN_DECAP_IPV6_TO_IPV4_CKSUM':'y'}) }}"
  when: vnf_name == "PROX" and image_type is defined and image_type == "vm"

- name: "make {{ vnf_name }} clean"
  command: make -j {{ ansible_processor_vcpus }} clean
  args:
    chdir: "{{ vnf_build_dir }}"
  environment: "{{ build_env_vars }}"

- name: "make {{ vnf_name }}"
  command: make -j {{ ansible_processor_vcpus }}
  args:
    chdir: "{{ vnf_build_dir }}"
  environment: "{{ build_env_vars }}"

#- command: cp "{{ vnf_build_dir }}/{{ vnf_name }}/build/ip_pipeline" "{{ INSTALL_BIN_PATH }}/vACL_vnf"

- name: "Install {{ vnf_name }} VNF"
  copy:
    src: "{{ vnf_build_dir }}/build/{{ vnf_app_name }}"
    dest: "{{ INSTALL_BIN_PATH }}/{{ vnf_app_name }}"
    remote_src: True
    # make executable
    mode: 0755

- set_fact:
    path_vnf: "{{ INSTALL_BIN_PATH }}/{{ vnf_app_names[vnf_name]}}"

- stat:
    path: "{{ path_vnf }}"
    checksum_algorithm: md5
  register: path_vnf_var

- stat:
    path: "{{ path_json }}"
  register: path_json_var

- name: Fetch from remote
  fetch:
    src: "{{ path_json }}"
    dest: "{{ path_json }}"
    flat: yes
  when: path_json_var.stat.exists

- name: Read from json
  set_fact:
    json_vars: "{{ lookup('file', path_json) | from_json }}"
  when: path_json_var.stat.exists

- set_fact:
    json_vars: "{{ json_vars | default([]) | combine({ vnf_app_names[vnf_name]: {'branch_commit': samplevnf_version, 'path_vnf': path_vnf, 'md5': path_vnf_var.stat.checksum }}) }}"

- name: Update json file
  copy:
    content: "{{ json_vars | to_nice_json }}"
    dest: "{{ path_json }}"
    mode: 0755