-
Notifications
You must be signed in to change notification settings - Fork 22
/
.kitchen.travis.yml
46 lines (42 loc) · 978 Bytes
/
.kitchen.travis.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
---
driver:
name: docker
use_sudo: false
provisioner:
hosts: test-kitchen
name: ansible_playbook
require_chef_for_busser: false
ansible_verbosity: 2
ansible_verbose: true
requirements_path: requirements.yml
idempotency_test: true
additional_copy_path: tasks
ansible_extra_flags: --skip-tags=mysql
platforms:
- name: ubuntu-18.04
driver_config:
image: jasonheecs/ansible:ubuntu-18.04
platform: ubuntu
- name: ubuntu-16.04
driver_config:
image: jasonheecs/ansible:ubuntu-16.04
platform: ubuntu
verifier:
name: serverspec
suites:
- name: lemp
driver:
provision_command:
- export LC_ALL=C
verifier:
default_pattern: true
bundler_path: '/usr/local/bin'
rspec_path: '/usr/local/bin'
- name: docker
driver:
provision_command:
- export LC_ALL=C
verifier:
default_pattern: true
bundler_path: '/usr/local/bin'
rspec_path: '/usr/local/bin'