-
Notifications
You must be signed in to change notification settings - Fork 22
/
.kitchen.yml
36 lines (29 loc) · 1.08 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
---
driver :
name : docker
socket : unix:///var/run/docker.sock
use_sudo : false
driver_config :
image : ubuntu:18.04
platform : ubuntu
provisioner :
name : ansible_push
ansible_config : "test/ansible.cfg"
idempotency_test : true
platforms:
- name : "ubuntu"
provisioner :
ansible_playbook_bin: "ansible-playbook"
suites :
- name : simpleNoChef
provisioner :
playbook : "test/application/simple.yml"
chef_bootstrap_url : nil
- name : simpleWithChef
provisioner :
playbook : "test/application/simple.yml"
- name : notidempotent
provisioner :
playbook : "test/application/notidempotent.yml"
fail_non_idempotent : false
chef_bootstrap_url : nil