summaryrefslogtreecommitdiff
path: root/acceptance/shared/.kitchen.digitalocean.yml
diff options
context:
space:
mode:
Diffstat (limited to 'acceptance/shared/.kitchen.digitalocean.yml')
-rw-r--r--acceptance/shared/.kitchen.digitalocean.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/acceptance/shared/.kitchen.digitalocean.yml b/acceptance/shared/.kitchen.digitalocean.yml
new file mode 100644
index 0000000000..50558c3d39
--- /dev/null
+++ b/acceptance/shared/.kitchen.digitalocean.yml
@@ -0,0 +1,27 @@
+# Not quite ready yet
+
+driver:
+ name: digitalocean
+ digitalocean_access_token: <%= ENV['DIGITALOCEAN_API_TOKEN'] %>
+ region: <%= ENV['DIGITALOCEAN_REGION'] %>
+ size: 2gb
+ ssh_key_ids: <%= ENV['DIGITALOCEAN_SSH_KEYS'] %>
+ transport:
+ ssh_key: <%= ENV['DIGITALOCEAN_SSH_KEY_PATH'] %>
+
+provisioner:
+ name: chef_zero
+ product_name: chef
+ product_version: latest
+ channel: current
+
+platforms:
+<% %w(centos-6.5 centos-7.0
+ fedora-21
+ debian-8.1
+ ubuntu-12.04 ubuntu-14.04 ubuntu-15.10
+).each do |platform| %>
+ - name: #{platform}
+ driver_config:
+ image: <%= "#{platform.gsub('.', '-')}-x64" %>
+<% end %>