Initial commit
diff --git a/.kitchen.yml b/.kitchen.yml
new file mode 100644
index 0000000..dccef7f
--- /dev/null
+++ b/.kitchen.yml
@@ -0,0 +1,47 @@
+---
+driver:
+ name: vagrant
+ vm_hostname: artifactory.ci.local
+ use_sudo: false
+ customize:
+ memory: 512
+
+
+provisioner:
+ name: salt_solo
+ salt_install: bootstrap
+ salt_bootstrap_url: https://bootstrap.saltstack.com
+ salt_version: latest
+ formula: artifactory
+ log_level: info
+ state_top:
+ base:
+ "*":
+ - artifactory
+ pillars:
+ top.sls:
+ base:
+ "*":
+ - artifactory
+ grains:
+ noservices: False
+
+
+verifier:
+ name: inspec
+ sudo: true
+
+
+platforms:
+ - name: ubuntu-14.04
+ - name: ubuntu-16.04
+ - name: centos-7.1
+
+
+suites:
+ - name: default
+ # provisioner:
+ # pillars-from-files:
+ # artifactory.sls: tests/pillar/default.sls
+
+# vim: ft=yaml sw=2 ts=2 sts=2 tw=125