started edgemicro installation
diff --git a/installations/micro/installation.yml b/installations/micro/installation.yml
new file mode 100644
index 0000000..f455e54
--- /dev/null
+++ b/installations/micro/installation.yml
@@ -0,0 +1,48 @@
+---
+- hosts: '{{ hosts }}'
+
+  tasks:
+  - name: Install needed Python libraries
+    become: yes
+    pip:
+      name: '{{ item }}'
+      state: present
+    with_items:
+    - urllib3
+    - pyopenssl
+    - ndg-httpsclient
+    - pyasn1
+
+  - name: Download OS package manager configuration script
+    become: yes
+    get_url:
+      url: https://rpm.nodesource.com/setup_6.x
+      dest: /tmp/setup_node.sh
+      mode: 0700
+
+  - name: Configure OS package manager
+    become: yes
+    shell: "/tmp/setup_node.sh"
+
+  - name:  Install OS packages
+    become: yes
+    yum:
+      name: '{{ item }}'
+      state: present
+    with_items:
+    - nodejs
+    - gcc-c++
+    - make
+
+  - name: Install edgemicro
+    become: yes
+    npm:
+      name: '{{ item }}'
+      global: yes
+      state: present
+    with_items:
+    - edgemicro
+
+  - name: Create edgemicro default configuration
+    shell: 'edgemicro init'
+