-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.kitchen.yml
40 lines (36 loc) · 1.12 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
driver:
name: ec2
associate_public_ip: true
availability_zone: us-east-1a
# aws_ssh_key_id: ADD THIS IN .kitchen.local.yml
instance_type: m3.large
# security_group_ids: ADD THIS IN .kitchen.local.yml
interface: public
# shared_credentials_profile: ADD THIS IN .kitchen.local.yml
# subnet_id: ADD THIS IN .kitchen.local.yml
tags:
project: labs-ansible-dk
type: build-slave
creator: <%= ENV['USER'] %>
provisioner:
name: chef_zero
require_chef_omnibus: 12.4.1
platforms:
- name: ubuntu-14.04
run_list: apt::default
driver:
image_id: ami-bb156ad1 # 14.04.4 https://cloud-images.ubuntu.com/locator/ec2/
tags:
Name: ansible-dk-build-ubuntu-14.04-<%= ENV['USER'] %>
transport:
# ssh_key: ADD THIS IN .kitchen.local.yml
connection_timeout: 30
suites:
- name: default
run_list:
- omnibus::default # Installs omnibus and the build toolchain
- ansible-dk-builder::default # Executes the build
attributes:
omnibus:
install_dir: /opt/ansible-dk
project_repo: /var/cache/omnibus-project