summaryrefslogtreecommitdiff
path: root/acceptance/shared/.kitchen.digitalocean.yml
blob: 50558c3d391345b2550c2d82866d86ca37c8ab39 (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
# 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 %>