-
Notifications
You must be signed in to change notification settings - Fork 8
/
.kitchen.yml
46 lines (43 loc) · 1.22 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
suites:
- name: default
data_bags_path: test/integration/default/data_bags
encrypted_data_bag_secret_key_path: test/integration/default/encrypted_data_bag_secret
run_list:
- recipe[ubuntu]
- recipe[postgresql::server]
- recipe[database::postgresql]
- recipe[flyway_cli_tester]
- recipe[flyway-cli]
attributes:
apt:
compile_time_update: true
ubuntu:
archive_url: http://it.archive.ubuntu.com/ubuntu
postgresql:
version: "9.3"
enable_pgdg_apt: true
password:
postgres: admin
flyway:
confs:
pippo:
jdbc_url: jdbc:postgresql://localhost:5432/pippo
jdbc_username: pippo
jdbc_password: pippo
migrations_url: file:////tmp/migrations.tar.gz
pippo2:
data_bag:
name: flyway
item: flyway-item
jdbc_url: jdbc:postgresql://localhost:5432/pippo2
options:
flyway.table: alternate_schema_version
flyway.encoding: UTF-8
migrations_url: file:////tmp/migrations.tar.gz