Skip to content

Commit 2f3b178

Browse files
committed
Merge pull request #18 from hwork/adding_platform_kitchen_yml
Making .kitchen.yml consistent on "Adding a Platform"
2 parents 18dea12 + 82a3656 commit 2f3b178

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

docs/source/docs/getting-started/adding-platform.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,21 @@ Now that we are masters of the Ubuntu platform, let's add support for CentOS to
1212

1313
~~~yaml
1414
---
15-
driver_plugin: vagrant
16-
driver_config:
17-
require_chef_omnibus: true
15+
driver:
16+
name: vagrant
17+
18+
provisioner:
19+
name: chef_solo
1820

1921
platforms:
20-
- name: ubuntu-12.04
21-
- name: centos-6.4
22+
- name: ubuntu-12.04
23+
- name: centos-6.4
2224

2325
suites:
24-
- name: default
25-
run_list: ["recipe[git]"]
26-
attributes: {}
26+
- name: default
27+
run_list:
28+
- recipe[git::default]
29+
attributes:
2730
~~~
2831

2932
Now let's check the status of our instances:

0 commit comments

Comments
 (0)