Initial commit

This is initial commit of manila formula.

Change-Id: I3db2409bab10e8005a8c99c3899d19ced495469e
diff --git a/.kitchen.yml b/.kitchen.yml
new file mode 100644
index 0000000..7923057
--- /dev/null
+++ b/.kitchen.yml
@@ -0,0 +1,74 @@
+---
+driver:
+  name: docker
+  hostname: manila.ci.local
+  use_sudo: false
+
+provisioner:
+  name: salt_solo
+  salt_install: bootstrap
+  salt_bootstrap_url: https://bootstrap.saltstack.com
+  salt_version: latest
+  require_chef: false
+  log_level: error
+  formula: manila
+  grains:
+    noservices: True
+  dependencies:
+    - name: linux
+      repo: git
+      source: https://github.com/salt-formulas/salt-formula-linux
+    - name: apache
+      repo: git
+      source: https://github.com/salt-formulas/salt-formula-apache
+  state_top:
+    base:
+      "*":
+        - linux.system
+        - apache
+        - manila
+  pillars:
+    top.sls:
+      base:
+        "*":
+          - linux_repo_openstack
+          - manila
+          - release
+  pillars-from-files:
+    linux_repo_openstack.sls: tests/pillar/repo_mcp_openstack_<%= ENV['OS_VERSION'] || 'pike' %>.sls
+
+verifier:
+  name: inspec
+  sudo: true
+
+platforms:
+  - name: <%= ENV['PLATFORM'] || 'ubuntu-xenial' %>
+    driver_config:
+      image: <%= ENV['PLATFORM'] || 'epcim/salt-formulas:saltstack-ubuntu-xenial-salt-2016.3' %>
+      platform: ubuntu
+
+suites:
+
+  - name: server_cluster
+    provisioner:
+      pillars-from-files:
+        manila.sls: tests/pillar/server_cluster.sls
+      pillars:
+        release.sls:
+        share.sls:
+          manila:
+            share:
+              version: <%= ENV['OS_VERSION'] || 'pike' %>
+
+  - name: server_single
+    provisioner:
+      pillars-from-files:
+        manila.sls: tests/pillar/server_single.sls
+      pillars:
+        release.sls:
+          manila:
+            common:
+              version: <%= ENV['OS_VERSION'] || 'pike' %>
+
+# vim: ft=yaml sw=2 ts=2 sts=2 tw=125
+