summaryrefslogtreecommitdiff
path: root/acceptance/.shared/kitchen_acceptance/.kitchen.digitalocean.yml
blob: d49d4b9cf03c639bf43fe9bf7d976e526e468dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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

# busser installation relies on this
<% if ENV["KITCHEN_CHEF_PRODUCT"] %>
verifier:
  chef_omnibus_root: "/opt/<%= ENV["KITCHEN_CHEF_PRODUCT"] %>"
<% end %>

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 %>