From b3f4d5b55a34f292f0fb1f913aaf988c6fe8bec7 Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Tue, 7 Feb 2017 17:27:40 +0100 Subject: [PATCH] Install pip Pip isn't installed on undercloud, making Install stackviz task fails because isn't able to find it. Change-Id: I3aac9a91e1ca74f03d84694239b0a8299dfc9c85 --- roles/validate-tempest/tasks/stackviz.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/validate-tempest/tasks/stackviz.yml b/roles/validate-tempest/tasks/stackviz.yml index d554470a8..5c44cb1b7 100644 --- a/roles/validate-tempest/tasks/stackviz.yml +++ b/roles/validate-tempest/tasks/stackviz.yml @@ -8,6 +8,12 @@ dest: "{{ working_dir }}/stackviz_static" use_ssh_args: true +- name: Install pip + easy_install: + name: pip + state: present + become: true + - name: Install stackviz pip: name: "."