-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
executable file
·62 lines (56 loc) · 1.23 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
#
# Project:: Ansible Role - ubuntu-base
#
# Copyright 2020, Route 1337 LLC, All Rights Reserved.
#
# Maintainers:
# - Matthew Ahrenstein: [email protected]
#
# See LICENSE
#
driver:
name: ec2
some_config: true
region: us-east-1
instance_type: m3.medium
associate_public_ip: true
interface: dns
provisioner:
name: ansible_playbook
ansible_verbose: true
ansible_verbosity: 4
verifier:
name: inspec
transport:
connection_timeout: 10
connection_retries: 5
username: ubuntu
platforms:
- name: ubuntu-20.04
- name: ubuntu-22.04
- name: ubuntu-24.04
suites:
- name: standard
provisioner:
require_ansible_repo: true
require_ansible_source: false
playbook: tests/playbooks/repo-role.yml
hosts: kitchen
roles_path: .
ansible_inventory: tests/inventory
verifier:
inspec_tests:
- tests/smoke/repo-role/standard
- name: systemd
provisioner:
require_ansible_repo: true
require_ansible_source: false
playbook: tests/playbooks/repo-role.yml
hosts: kitchen
roles_path: .
ansible_inventory: tests/inventory
host_vars_path: tests/host_vars/systemd
verifier:
inspec_tests:
- tests/smoke/repo-role/systemd