Initial commit

This patch adds initial formula that allow to install Ironic api
and conductor.

Change-Id: I21fe4cd93454ed64277ba6756a591155d0052dc8
diff --git a/tests/pillar/conductor_single.sls b/tests/pillar/conductor_single.sls
new file mode 100644
index 0000000..616e456
--- /dev/null
+++ b/tests/pillar/conductor_single.sls
@@ -0,0 +1,32 @@
+ironic:
+  conductor:
+    version: ocata
+    enabled: true
+    tftp_root: '/var/lib/tftpboot'
+    message_queue:
+      engine: rabbitmq
+      host: '127.0.0.1'
+      port: 5672
+      user: openstack
+      password: workshop
+      virtual_host: '/openstack'
+    database:
+      engine: mysql
+      host: '127.0.0.1'
+      port: 3306
+      name: ironic
+      user: ironic
+      password: workshop
+    identity:
+      engine: 'noauth'
+    http_root: '/var/www/httproot'
+  tftpd_hpa:
+    server:
+      bind:
+        address: '0.0.0.0'
+        port: 69
+      username: 'ironic'
+      path: ${ironic:conductor:tftp_root}
+      options:
+        - secure
+        - map-file: '${ironic:conductor:tftp_root}/map-file'