aboutsummaryrefslogtreecommitdiffstats
path: root/kud
diff options
context:
space:
mode:
authorKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>2019-11-11 13:55:31 -0800
committerKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>2019-11-11 13:55:31 -0800
commit43eb8399839b26cafb2682731f5665a7c8e593a6 (patch)
treeb9d0eba7355b4228973971850c4db9e47547c3ba /kud
parente3af69fe78abcbb88380ce5d557d93ebd2700ffd (diff)
Optimizing the onap4k8s for all deployment model
Issue-ID: MULTICLOUD-927 Co-authored-by: Itohan Ukponmwan <itohan.ukponmwan@intel.com> Signed-off-by: Kuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com> Change-Id: I97019f3ab06c948b77e189f526c4e217e7706fb6
Diffstat (limited to 'kud')
-rw-r--r--kud/deployment_infra/playbooks/configure-onap4k8s.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/kud/deployment_infra/playbooks/configure-onap4k8s.yml b/kud/deployment_infra/playbooks/configure-onap4k8s.yml
index cacb41c9..11729171 100644
--- a/kud/deployment_infra/playbooks/configure-onap4k8s.yml
+++ b/kud/deployment_infra/playbooks/configure-onap4k8s.yml
@@ -19,6 +19,14 @@
repo: 'https://github.com/onap/multicloud-k8s.git'
dest: /opt/multicloud
+ - name: install make package for ubuntu systems
+ apt: name=make state=present update_cache=yes
+ when: ansible_distribution == "Ubuntu"
+
+ - name: install make package for centos systems
+ yum: name=make state=present update_cache=yes
+ when: ansible_distribution == "CentOS"
+
- name: Change the onap4k8s directory and run the command make repo
command: /usr/bin/make repo
register: make_repo