-
-
Notifications
You must be signed in to change notification settings - Fork 476
/
Copy pathconfig.pp
225 lines (204 loc) · 7.49 KB
/
config.pp
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# This class exists to coordinate all configuration related actions,
# functionality and logical units in a central place.
#
# It is not intended to be used directly by external resources like node
# definitions or other modules.
#
# @example importing this class into other classes to use its functionality:
# class { 'elasticsearch::config': }
#
# @author Richard Pijnenburg <richard.pijnenburg@elasticsearch.com>
# @author Tyler Langlois <tyler.langlois@elastic.co>
# @author Gavin Williams <gavin.williams@elastic.co>
#
class elasticsearch::config {
#### Configuration
Exec {
path => [ '/bin', '/usr/bin', '/usr/local/bin' ],
cwd => '/',
}
$init_defaults = merge(
{
'MAX_OPEN_FILES' => '65535',
},
$elasticsearch::init_defaults
)
if ( $elasticsearch::ensure == 'present' ) {
file {
$elasticsearch::homedir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user;
$elasticsearch::configdir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user,
mode => '2750';
$elasticsearch::datadir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user,
mode => '2750';
$elasticsearch::logdir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user,
mode => '2750';
$elasticsearch::real_plugindir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user,
mode => 'o+Xr';
"${elasticsearch::homedir}/lib":
ensure => 'directory',
group => '0',
owner => 'root',
recurse => true;
}
# Defaults file, either from file source or from hash to augeas commands
if ($elasticsearch::init_defaults_file != undef) {
file { "${elasticsearch::defaults_location}/elasticsearch":
ensure => $elasticsearch::ensure,
source => $elasticsearch::init_defaults_file,
owner => 'root',
group => $elasticsearch::elasticsearch_group,
mode => '0660',
before => Service['elasticsearch'],
notify => $elasticsearch::_notify_service,
}
} else {
augeas { "${elasticsearch::defaults_location}/elasticsearch":
incl => "${elasticsearch::defaults_location}/elasticsearch",
lens => 'Shellvars.lns',
changes => template("${module_name}/etc/sysconfig/defaults.erb"),
before => Service['elasticsearch'],
notify => $elasticsearch::_notify_service,
}
}
# Generate config file
$_config = deep_implode($elasticsearch::config)
# Generate SSL config
if $elasticsearch::ssl {
if ($elasticsearch::keystore_password == undef) {
fail('keystore_password required')
}
if ($elasticsearch::keystore_path == undef) {
$_keystore_path = "${elasticsearch::configdir}/elasticsearch.ks"
} else {
$_keystore_path = $elasticsearch::keystore_path
}
# Set the correct xpack. settings based on ES version
if (versioncmp($elasticsearch::version, '7') >= 0) {
$_tls_config = {
'xpack.security.http.ssl.enabled' => true,
'xpack.security.http.ssl.keystore.path' => $_keystore_path,
'xpack.security.http.ssl.keystore.password' => $elasticsearch::keystore_password,
'xpack.security.transport.ssl.enabled' => true,
'xpack.security.transport.ssl.keystore.path' => $_keystore_path,
'xpack.security.transport.ssl.keystore.password' => $elasticsearch::keystore_password,
}
}
else {
$_tls_config = {
'xpack.security.transport.ssl.enabled' => true,
'xpack.security.http.ssl.enabled' => true,
'xpack.ssl.keystore.path' => $_keystore_path,
'xpack.ssl.keystore.password' => $elasticsearch::keystore_password,
}
}
# Trust CA Certificate
java_ks { 'elasticsearch_ca':
ensure => 'latest',
certificate => $elasticsearch::ca_certificate,
target => $_keystore_path,
password => $elasticsearch::keystore_password,
trustcacerts => true,
}
# Load node certificate and private key
java_ks { 'elasticsearch_node':
ensure => 'latest',
certificate => $elasticsearch::certificate,
private_key => $elasticsearch::private_key,
target => $_keystore_path,
password => $elasticsearch::keystore_password,
}
} else {
$_tls_config = {}
}
# # Logging file or hash
# if ($elasticsearch::logging_file != undef) {
# $_log4j_content = undef
# } else {
# if ($elasticsearch::logging_template != undef ) {
# $_log4j_content = template($elasticsearch::logging_template)
# } else {
# $_log4j_content = template("${module_name}/etc/elasticsearch/log4j2.properties.erb")
# }
# $_logging_source = undef
# }
# file {
# "${elasticsearch::configdir}/log4j2.properties":
# ensure => file,
# content => $_log4j_content,
# source => $_logging_source,
# mode => '0644',
# notify => $elasticsearch::_notify_service,
# require => Class['elasticsearch::package'],
# before => Class['elasticsearch::service'],
# }
# Generate Elasticsearch config
$_es_config = merge(
$elasticsearch::config,
{ 'path.data' => $elasticsearch::datadir },
{ 'path.logs' => $elasticsearch::logdir },
$_tls_config
)
datacat_fragment { 'main_config':
target => "${elasticsearch::configdir}/elasticsearch.yml",
data => $_es_config,
}
datacat { "${elasticsearch::configdir}/elasticsearch.yml":
template => "${module_name}/etc/elasticsearch/elasticsearch.yml.erb",
notify => $elasticsearch::_notify_service,
require => Class['elasticsearch::package'],
owner => $elasticsearch::elasticsearch_user,
group => $elasticsearch::elasticsearch_group,
mode => '0440',
}
# Add any additional JVM options
$elasticsearch::jvm_options.each |String $jvm_option| {
file_line { "jvm_option_${jvm_option}":
ensure => present,
path => "${elasticsearch::configdir}/jvm.options",
line => $jvm_option,
notify => $elasticsearch::_notify_service,
}
}
if $elasticsearch::system_key != undef {
file { "${elasticsearch::configdir}/system_key":
ensure => 'file',
source => $elasticsearch::system_key,
mode => '0400',
}
}
# Add secrets to keystore
if $elasticsearch::secrets != undef {
elasticsearch_keystore { 'elasticsearch_secrets':
configdir => $elasticsearch::configdir,
purge => $elasticsearch::purge_secrets,
settings => $elasticsearch::secrets,
notify => $::elaticsearch::_notify_service,
}
}
} elsif ( $elasticsearch::ensure == 'absent' ) {
file { $elasticsearch::real_plugindir:
ensure => 'absent',
force => true,
backup => false,
}
file { "${elasticsearch::defaults_location}/elasticsearch":
ensure => 'absent',
subscribe => Service['elasticsearch'],
}
}
}