forked from morr/chef-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
77 lines (73 loc) · 1.72 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
driver:
name: docker
use_sudo: false
provisioner:
name: chef_zero
driver_config:
provision_command:
- apt-get install net-tools
platforms:
- name: ubuntu-16.04
suites:
- name: default
run_list:
- recipe[postgresql::server]
- recipe[postgresql::client]
attributes:
postgresql:
version: "9.6"
users:
- username: testuser
password: s3kr1t
login: true
databases:
- name: testdb
owner: testuser
template: template0
encoding: utf8
locale: en_US.utf8
extensions:
- adminpack
- autoinc
- btree_gin
- btree_gist
- chkpass
- citext
- cube
- dict_int
- dict_xsyn
- earthdistance
- file_fdw
- fuzzystrmatch
- hstore
- insert_username
- intagg
- intarray
- isn
- lo
- ltree
- moddatetime
- pageinspect
- pg_buffercache
- pg_freespacemap
- pg_prewarm
- pg_stat_statements
- pg_trgm
- pgcrypto
- pgrowlocks
- pgstattuple
- postgres_fdw
- refint
- seg
- sslinfo
- tablefunc
- tcn
- timetravel
- tsearch2
- unaccent
- xml2
extensions:
- name: dblink
database: testdb
- name: uuid-ossp
database: testdb