This repository has been archived by the owner on Oct 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
.kitchen.yml
75 lines (69 loc) · 2.12 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
# When editing this file, remember that http://www.yamllint.com is your friend :-)
---
driver:
name: vagrant
customize:
memory: 4096
cpus: 2
provisioner:
name: chef_zero
platforms:
- name: centos-7.2
driver_config:
network:
- ["private_network", {ip: "192.168.33.23"}]
driver:
box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-7.2_chef-provisionerless.box
suites:
- name: community
run_list:
- recipe[alfresco::default]
- recipe[alfresco::redeploy]
data_bags_path: "test/integration/data_bags"
attributes: {
"name": "chef-alfresco-community",
"hostname": "alfresco-allinone-test",
"alfresco" : {
"components" : ['haproxy','nginx','tomcat','transform','repo','share','solr','mysql','googledocs','yourkit'],
"version" : "5.1.g",
"ssl_enabled" : false
},
"nginx" : {
"use_nossl_config" : true
}
}
- name: enterprise
run_list:
- recipe[alfresco::default]
- recipe[alfresco::redeploy]
data_bags_path: "test/integration/data_bags"
attributes: {
"name": "chef-alfresco-enterprise",
"hostname": "alfresco-allinone-test",
"alfresco" : {
"version" : "5.1.1.1",
"components" : ["haproxy","nginx","tomcat","transform","repo","share","solr","mysql","aos", "rm"],
"edition" : "enterprise",
"ssl_enabled" : false
},
"artifact-deployer" : {
"maven" : {
"timeout" : 1500,
"repositories" : {
"internal" : {
"url" : "https://artifacts.alfresco.com/nexus/content/groups/internal",
"username" : "<%= ENV['NEXUS_USERNAME'] %>",
"password" : "<%= ENV['NEXUS_PASSWORD'] %>"
},
"staging" : {
"url" : "https://artifacts.alfresco.com/nexus/content/repositories/internal-staging",
"username" : "<%= ENV['NEXUS_USERNAME'] %>",
"password" : "<%= ENV['NEXUS_PASSWORD'] %>"
}
}
}
},
"nginx" : {
"use_nossl_config" : true
}
}