--- /dev/null
+---
+# SPDX-license-identifier: Apache-2.0
+##############################################################################
+# Copyright (c) 2018
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+- hosts: kube-master
+  tasks:
+    - name: Load kud variables
+      include_vars:
+        file: kud-vars.yml
+
+    - name: Change the emco directory and run helm delete
+      command: /usr/local/bin/helm delete --purge emco
+      register: helm_delete
+      args:
+        chdir: /opt/multicloud/deployments/helm/v2/emco
+
+    - debug:
+        var: helm_delete.stdout_lines
+
+    - name: Change the emco directory and delete the emco namespace
+      command: /usr/local/bin/kubectl delete ns emco
+      register: delete_emco_ns
+      args:
+        chdir: /opt/multicloud/deployments/helm/v2/emco
+
+    - debug:
+        var: delete_emco_ns.stdout_lines
+
+    - name: Change the emco directory and make clean
+      command: /usr/bin/make clean
+      register: make_clean
+      args:
+        chdir: /opt/multicloud/deployments/helm/v2/emco
+
+    - debug:
+        var: make_clean.stdout_lines
+
+    - name: Change the emco directory and make repo-stop
+      command: /usr/bin/make repo-stop
+      register: make_repo_stop
+      args:
+        chdir: /opt/multicloud/deployments/helm/v2/emco
+
+    - debug:
+        var: make_repo_stop.stdout_lines
+
+    - name: clean multicloud-k8s path
+      file:
+        state: absent
+        path: /opt/multicloud
 
--- /dev/null
+---
+# SPDX-license-identifier: Apache-2.0
+##############################################################################
+# Copyright (c) 2018
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+- hosts: kube-master
+  tasks:
+    - name: Load kud variables
+      include_vars:
+        file: kud-vars.yml
+
+    - name: Getting emco code in /opt folder
+      git:
+        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 emco directory and run the command make repo
+      command: /usr/bin/make repo
+      register: make_repo
+      args:
+        chdir: /opt/multicloud/deployments/helm/v2/emco
+
+    - debug:
+        var: make_repo.stdout_lines
+
+    - name: Change the emco directory and run the command make all
+      command: /usr/bin/make all
+      register: make_all
+      args:
+        chdir: /opt/multicloud/deployments/helm/v2/emco
+
+    - debug:
+        var: make_all.stdout_lines
+
+    - name: Change the emco directory and run the command helm install
+      command: /usr/local/bin/helm install dist/packages/emco-0.1.0.tgz --name emco --namespace emco
+      register: helm_install
+      args:
+        chdir: /opt/multicloud/deployments/helm/v2/emco
+
+    - debug:
+        var: helm_install.stdout_lines
 
     - debug:
         var: helm_delete.stdout_lines
 
-    - name: Change the onap4k8s directory and delete the ona4k8s-ns namespace
+    - name: Change the onap4k8s directory and delete the onap4k8s-ns namespace
       command: /usr/local/bin/kubectl delete ns onap4k8s-ns
       register: delete_onap_ns
       args: