-
-
Notifications
You must be signed in to change notification settings - Fork 784
Expand file tree
/
Copy pathkitchen.exec.yml
More file actions
124 lines (109 loc) · 2.7 KB
/
Copy pathkitchen.exec.yml
File metadata and controls
124 lines (109 loc) · 2.7 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
---
driver:
name: exec
sudo: true
chef_omnibus_install: false
transport:
name: exec
provisioner:
name: chef_infra
product_name: <%= ENV['CHEF_PRODUCT_NAME'] || 'cinc' %>
product_version: <%= ENV['CHEF_VERSION'] || 'latest' %>
enforce_idempotency: true
multiple_converge: 2
deprecations_as_errors: true
install_strategy: skip
chef_client_path: /opt/cinc-workstation/bin/chef-client
verifier:
name: inspec
platforms:
- name: ubuntu-latest
suites:
- name: default
provisioner:
named_run_list: default
run_list:
- recipe[test::default]
- name: installation_script
provisioner:
named_run_list: installation_script
run_list:
- recipe[test::installation_script]
- name: installation_package
provisioner:
named_run_list: installation_package
run_list:
- recipe[test::installation_package]
- name: installation_tarball
provisioner:
named_run_list: installation_tarball
run_list:
- recipe[test::installation_tarball]
- name: install_and_stop
provisioner:
named_run_list: install_and_stop
run_list:
- recipe[test::install_and_stop]
- name: resources
provisioner:
named_run_list: resources
enforce_idempotency: false
multiple_converge: 1
run_list:
- recipe[test::default]
- recipe[test::image]
- recipe[test::container]
- recipe[test::exec]
- recipe[test::plugin]
- recipe[test::image_prune]
- recipe[test::volume_prune]
- name: network
provisioner:
named_run_list: network
enforce_idempotency: false
multiple_converge: 1
run_list:
- recipe[test::default]
- recipe[test::network]
- name: volume
provisioner:
named_run_list: volume
enforce_idempotency: false
multiple_converge: 1
run_list:
- recipe[test::default]
- recipe[test::volume]
- recipe[test::volume_prune]
- name: registry
provisioner:
named_run_list: registry
enforce_idempotency: false
multiple_converge: 1
run_list:
- recipe[test::default]
- recipe[test::registry]
- name: swarm
provisioner:
named_run_list: swarm
enforce_idempotency: false
multiple_converge: 1
attributes:
docker:
swarm:
init:
advertise_addr: '127.0.0.1'
listen_addr: '0.0.0.0:2377'
rotate_token: true
service:
name: 'web'
image: 'nginx:latest'
publish: ['80:80']
replicas: 2
run_list:
- recipe[test::swarm]
- recipe[test::swarm_service]
- name: smoke
provisioner:
named_run_list: smoke
run_list:
- recipe[test::smoke]