From c7c51d5100e8eba93337c34bd9eb101ec4cf70df Mon Sep 17 00:00:00 2001 From: Malanik Jan Date: Tue, 18 Jul 2017 12:54:10 -0400 Subject: yardstick setup ansible, including load_images also update to cirros 0.3.5 added PROX compilation add create_node_pod_yaml role JIRA: YARDSTICK-639 Change-Id: If5999841287a54c7e5c64a7cc487c6394df90424 Signed-off-by: Malanik Jan Signed-off-by: Ross Brattain --- ansible/roles/download_prox/defaults/main.yml | 12 +++++++++ ansible/roles/download_prox/tasks/main.yml | 36 +++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 ansible/roles/download_prox/defaults/main.yml create mode 100644 ansible/roles/download_prox/tasks/main.yml (limited to 'ansible/roles/download_prox') diff --git a/ansible/roles/download_prox/defaults/main.yml b/ansible/roles/download_prox/defaults/main.yml new file mode 100644 index 000000000..797db3125 --- /dev/null +++ b/ansible/roles/download_prox/defaults/main.yml @@ -0,0 +1,12 @@ +--- +prox_version: v037 +prox_suffix: + v035: "zip" + v037: "tar.gz" +prox_url: "https://01.org/sites/default/files/downloads/intelr-data-plane-performance-demonstrators/dppd-prox-{{ prox_version }}.{{ prox_suffix[prox_version] }}" +prox_file: "{{ prox_url|basename }}" +prox_unarchive: "{{ prox_file|regex_replace('[.]zip$', '')|regex_replace('-prox-', '-PROX-') }}" +prox_dest: "{{ clone_dest }}/" +prox_sha256s: + v035: "sha256:f5d3f7c3855ca198d2babbc7045ed4373f0ddc13dc243fedbe23ed395ce65cc9" + v037: "sha256:a12d021fbc0f5ae55ab55a2bbf8f3b260705ce3e61866288f023ccabca010bca" diff --git a/ansible/roles/download_prox/tasks/main.yml b/ansible/roles/download_prox/tasks/main.yml new file mode 100644 index 000000000..0614c74fa --- /dev/null +++ b/ansible/roles/download_prox/tasks/main.yml @@ -0,0 +1,36 @@ +# 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. +--- +- debug: + var: prox_version + verbosity: 2 + +- name: fetch prox + get_url: + url: "{{ prox_url }}" + dest: "{{ prox_dest }}" + validate_certs: False + checksum: "{{ prox_sha256s[prox_version] }}" + +- unarchive: + src: "{{ clone_dest }}/{{ prox_file }}" + dest: "{{ clone_dest }}/" + copy: no + +- debug: + var: prox_unarchive + verbosity: 2 + +- set_fact: + prox_path: "{{ clone_dest }}/{{ prox_unarchive }}" \ No newline at end of file -- cgit 1.2.3-korg