This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.kitchen.yml
58 lines (54 loc) · 1.58 KB
/
.kitchen.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
driver:
name: vagrant
provisioner:
name: chef_solo
# Base image for EC2 and Rackspace is built here:
# https://github.com/octohost/ubuntu-14.04
#
# The EC2 image is public and can be used by anyone.
# Rackspace images can't be shared - so you need to build your own.
platforms:
- name: ubuntu-14.04
driver_plugin: vagrant
- name: digitalocean
driver_plugin: digitalocean
driver_config:
region: nyc3
size: 1gb
image: ubuntu-14-04-x64
- name: gce
driver_plugin: gce
driver_config:
google_client_email: <%= ENV['GCE_CLIENT_EMAIL'] %>
google_key_location: <%= ENV['GCE_ACCOUNT_FILE'] %>
google_project: <%= ENV['GCE_PROJECT_ID'] %>
region: us-central1-f
image_name: ubuntu-1404-trusty-v20150128
- name: ec2
driver_plugin: ec2
driver_config:
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY'] %>
aws_secret_access_key: <%= ENV['AWS_SECRET_KEY'] %>
aws_ssh_key_id: <%= ENV['AWS_SSH_KEY_ID'] %>
image_id: ami-f35078c3
region: us-west-2
availability_zone: us-west-2b
flavor_id: c3.large
username: ubuntu
- name: rackspace
driver_plugin: rackspace
driver_config:
rackspace_username: <%= ENV['OS_USERNAME'] %>
rackspace_api_key: <%= ENV['OS_PASSWORD'] %>
require_chef_omnibus: false
image_id: bf182836-221e-47fa-ae58-cc6f4f96b6cb
flavor_id: 3
server_name: octohost
public_key_path: <%= ENV['HOME'] %>/.ssh/id_dsa.pub
rackspace_region: iad
suites:
- name: default
run_list:
- recipe[octohost::default]
attributes: