-
Notifications
You must be signed in to change notification settings - Fork 5
/
.kitchen.yml
41 lines (39 loc) · 1.04 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
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
customize:
cpus: 1
memory: 512
platforms:
- name: rhel-6.5
run_list: ['recipe[yum-epel]']
attributes:
rhsm:
username: <%= ENV['RHSM_USERNAME'] %>
password: <%= ENV['RHSM_PASSWORD'] %>
additional_repos: ['rhel-6-server-optional-rpms']
driver_config:
box: local-rhel-6.5
box_url: file://<%= File.expand_path('~') %>/opscode_rhel-6.5_chef-provisionerless.box
- name: rhel-7.0
run_list: ['recipe[yum-epel]']
attributes:
rhsm:
username: <%= ENV['RHSM_USERNAME'] %>
password: <%= ENV['RHSM_PASSWORD'] %>
additional_repos: ['rhel-7-server-optional-rpms']
driver_config:
box: local-rhel-7.0
box_url: file://<%= File.expand_path('~') %>/opscode_rhel-7.0_chef-provisionerless.box
suites:
- name: default
run_list: ['recipe[rhsm]']
attributes:
cloud:
provider: vagrant
- name: unregister
run_list: ['recipe[rhsm::register]', 'recipe[rhsm::unregister]']
attributes:
cloud:
provider: vagrant