Optimizing the onap4k8s for all deployment model 64/98264/1
authorKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>
Mon, 11 Nov 2019 21:55:31 +0000 (13:55 -0800)
committerKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>
Mon, 11 Nov 2019 21:55:31 +0000 (13:55 -0800)
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

kud/deployment_infra/playbooks/configure-onap4k8s.yml

index cacb41c..1172917 100644 (file)
         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