-
Notifications
You must be signed in to change notification settings - Fork 48
/
.kitchen.yml
85 lines (81 loc) · 2.21 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
---
driver:
name: vagrant
vagrantfile_erb: Vagrantfile.erb
driver_config:
customize:
memory: 4096
network:
- - forwarded_port
- guest: 9000
host: 9000
auto_correct: true
- - forwarded_port
- guest: 12201
host: 12201
auto_correct: true
- - forwarded_port
- guest: 12201
host: 12201
auto_correct: true
protocol: udp
provisioner:
name: chef_zero
product_name: chef
product_version: 15
install_strategy: once
data_path: test
platforms:
- name: centos-8.3
attributes:
elasticsearch:
download_url: "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-%s-x86_64.rpm"
download_checksum: "aa10954329d659d7d3a2f8f1abfe3be764b09c44a6248b7a25d6b95c38c03fe3"
mongodb:
reload_action: "restart"
- name: ubuntu-20.04
attributes:
elasticsearch:
download_url: "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-%s-amd64.deb"
download_checksum: "b91564a4ebf926c7634b5817e7b8a9f82335a0554a2a15740b3a8f42d2bfff8f"
run_list:
- recipe[apt]
- name: debian-10.10
attributes:
elasticsearch:
download_url: "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-%s-amd64.deb"
download_checksum: "b91564a4ebf926c7634b5817e7b8a9f82335a0554a2a15740b3a8f42d2bfff8f"
run_list:
- recipe[apt]
suites:
- name: openjdk
attributes:
machine_fqdn: graylog.local
machine_fqdn_as_hostname: true
apt:
compile_time_update: true
java_version: '11'
mongodb:
package_version: '4.4.8'
graylog2:
password_secret: "2jueVqZpwLLjaWxV"
# Credentials are admin:admin
root_password_sha2: "8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918"
restart: "delayed"
sidecar:
version: '1.1.0'
release: '1'
elasticsearch:
version: "7.10.2"
cluster:
name: "graylog"
run_list:
- recipe[fqdn]
- recipe[curl]
- recipe[sc-mongodb]
- recipe[java_test]
- recipe[elasticsearch_test]
- recipe[graylog2]
- recipe[graylog2::server]
- recipe[graylog2::sidecar]
- recipe[graylog2::authbind]