Puppet Class: elasticsearch::config
- Defined in:
- manifests/config.pp
Overview
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.
@author Gavin Williams <gavin.williams@elastic.co>
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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
# File 'manifests/config.pp', line 14
class elasticsearch::config {
#### Configuration
Exec {
path => ['/bin', '/usr/bin', '/usr/local/bin'],
cwd => '/',
}
$init_defaults = {
'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::real_plugindir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user,
mode => 'o+Xr';
"${elasticsearch::homedir}/lib":
ensure => 'directory',
group => '0',
owner => 'root',
mode => '0644',
recurse => true;
}
if $elasticsearch::manage_datadir {
file { $elasticsearch::datadir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user,
mode => '2750',
}
}
if $elasticsearch::manage_logdir {
file { $elasticsearch::logdir:
ensure => 'directory',
group => $elasticsearch::elasticsearch_group,
owner => $elasticsearch::elasticsearch_user,
mode => $elasticsearch::logdir_mode,
}
}
# 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::service_name],
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::service_name],
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 ($elasticsearch::version != false and versioncmp($elasticsearch::version, '7') < 0) {
$_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,
}
}
else {
$_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,
}
}
# 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,
private_key_type => $elasticsearch::private_key_type,
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
$data =
$elasticsearch::config + { 'path.data' => $elasticsearch::datadir } + { 'path.logs' => $elasticsearch::logdir } + $_tls_config
file { "${elasticsearch::configdir}/elasticsearch.yml":
ensure => 'file',
content => 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',
}
file { "${elasticsearch::configdir}/jvm.options":
ensure => 'file',
notify => $elasticsearch::_notify_service,
require => Class['elasticsearch::package'],
owner => 'root',
group => $elasticsearch::elasticsearch_group,
mode => '0640',
}
if ($elasticsearch::version != false and versioncmp($elasticsearch::version, '7.7.0') < 0) {
# Add any additional JVM options
$elasticsearch::jvm_options.each |String $jvm_option| {
$split_jvm_option = split($jvm_option, '=')
file_line { "jvm_option_${jvm_option}":
ensure => present,
path => "${elasticsearch::configdir}/jvm.options",
match => $split_jvm_option.length ? { 2 => "^${split_jvm_option[0]}=", default => undef, },
line => $jvm_option,
notify => $elasticsearch::_notify_service,
}
}
}
else {
# https://www.elastic.co/guide/en/elasticsearch/reference/master/advanced-configuration.html#set-jvm-options
# https://github.com/elastic/elasticsearch/pull/51882
# >> "Do not modify the root jvm.options file. Use files in jvm.options.d/ instead."
$_epp_hash = {
sorted_jvm_options => sort(unique($elasticsearch::jvm_options)),
}
file { "${elasticsearch::configdir}/jvm.options.d/jvm.options":
ensure => 'file',
content => epp("${module_name}/etc/elasticsearch/jvm.options.d/jvm.options.epp", $_epp_hash),
owner => $elasticsearch::elasticsearch_user,
group => $elasticsearch::elasticsearch_group,
mode => '0640',
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 => $elasticsearch::_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::service_name],
}
}
}
|