-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.kitchen.yml
139 lines (131 loc) · 3.44 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
---
driver:
name: vagrant
provisioner:
name: chef_zero
require_chef_omnibus: '12.10'
platforms:
- name: centos-7.1
driver_config:
network:
- ["forwarded_port", {guest: 3306, host: 3306, auto_correct: true}]
- name: windows-2012r2
driver:
box: dhoer/windows-2012r2
suites:
- name: default
run_list:
- flywaydb_test::mysql
- flywaydb_test::default
attributes:
flywaydb_test:
parameters:
password: mysql
placeholders.test_password: test
flyway_conf:
user: notset
url: jdbc:mysql://notset/mysql
schemas: flywaydb_test
locations: filesystem:/tmp/db
cleanDisabled: true
placeholders.test_user: test
alt_conf:
user: root
url: jdbc:mysql://localhost/mysql
mysql_driver: true
sensitive: false
excludes:
- windows-2012r2
- name: timeout
run_list:
- flywaydb_test::mysql
- flywaydb_test::timeout
attributes:
flywaydb:
timeout: 10 # seconds
flywaydb_test:
parameters:
password: mysql
placeholders.test_password: test
flyway_conf:
user: root
url: jdbc:mysql://localhost/mysql
schemas: flywaydb_test
locations: filesystem:/tmp/db
cleanDisabled: true
placeholders.test_user: test
sensitive: false
includes:
- centos-7.1
- name: nil_flyway_conf
run_list:
- flywaydb_test::mysql
- flywaydb_test::default
attributes:
flywaydb_test:
parameters:
password: mysql
placeholders.test_password: test
alt_conf:
user: root
url: jdbc:mysql://localhost/mysql
schemas: flywaydb_test
locations: filesystem:/tmp/db
cleanDisabled: true
placeholders.test_user: test
sensitive: false
includes:
- centos-7.1
- name: conf_file
run_list:
- flywaydb_test::mysql
- flywaydb_test::default
attributes:
flywaydb_test:
parameters:
user: root
password: mysql
placeholders.test_password: test
flyway_conf: /tmp/conf/ext.conf
sensitive: false
includes:
- centos-7.1
- name: 3.2.1
run_list:
- flywaydb_test::mysql
- flywaydb_test::default
attributes:
flywaydb:
url: https://bintray.com/artifact/download/business/maven/flyway-commandline-3.2.1-linux-x64.tar.gz
sha256: 8b9ba320a69b8cdef6de60118e312d3cbe96ca37a24b8aec7be4cdf4950bb5fe
flywaydb_test:
parameters:
user: root
password: mysql
placeholders.test_password: test
alt_conf: /tmp/conf/ext.conf
includes:
- centos-7.1
- name: win # converge default-centos-7.1 before converging win-windows-2012r2
run_list:
- flywaydb_test::default
attributes:
flywaydb:
group: Administrators
flywaydb_test:
parameters:
password: test
flyway_conf:
user: notset
url: jdbc:mysql://notset/mysql
schemas: flywaydb_test
locations: filesystem:/tmp/db
cleanDisabled: true
alt_conf:
user: test
url: jdbc:mysql://10.0.0.3/mysql # change ip
sensitive: false
password: 84aXPZugs8xR7xTz # required by windows
mysql_driver: true
includes:
- windows-2012r2