Skip to content

Commit ddffeea

Browse files
widhalmtdnssmr
andauthored
Fixed a typo. (#221)
Thanks @xtruthx and @frankhetterich for finding it. fixes #217 fixes #214 --------- Co-authored-by: dnssmr <this@denisesiemer.net>
1 parent a4ba668 commit ddffeea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/role-elasticsearch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Role Variables
3131
* *elasticsearch_fs_repo*: List of paths that should be registered as repository for snapshots (only filesystem supported so far). (default: none) Remember, that every node needs access to the same share under the same path.
3232
* *elasticsearch_bootstrap_pw*: Bootstrap password for Elasticsearch (Default: `PleaseChangeMe`)
3333
* *elasticsearch_disable_systemcallfilterchecks*: Disable system call filter checks. This has a security impact but is necessary on some systems. Please refer to the [docs](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/_system_call_filter_check.html) for details. (default: `false`)
34-
* *ealsticsearch_http_publish_host*: (String) The network address for HTTP clients to contact the node using sniffing. Accepts an IP address, a hostname, or a special value. (default: `not set`)
35-
* *ealsticsearch_http_publish_port*: (integer) The port of the HTTP publish address. Configure this setting only if you need the publish port to be different from http.port. (default: `not set`)
34+
* *elasticsearch_http_publish_host*: (String) The network address for HTTP clients to contact the node using sniffing. Accepts an IP address, a hostname, or a special value. (default: `not set`)
35+
* *elasticsearch_http_publish_port*: (integer) The port of the HTTP publish address. Configure this setting only if you need the publish port to be different from http.port. (default: `not set`)
3636
* *elasticsearch_pamlimits*: Set pam_limits neccessary for Elasticsearch. (Default: `true`)
3737
* *elasticsearch_check_calculation*: End play in checks (Default: `false`)
3838

roles/elasticsearch/templates/elasticsearch.yml.j2

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ path.data: {{ elasticsearch_datapath }}
33
path.logs: {{ elasticsearch_logpath }}
44
cluster.name: "{{ elasticsearch_clustername }}"
55
network.host: ["_local_","_site_"]
6-
{% if ealsticsearch_http_publish_host is defined %}
7-
http.publish_host: "{{ ealsticsearch_http_publish_host }}"
6+
{% if elasticsearch_http_publish_host is defined %}
7+
http.publish_host: "{{ elasticsearch_http_publish_host }}"
88
{% endif %}
9-
{% if ealsticsearch_http_publish_port is defined %}
10-
http.publish_port: {{ ealsticsearch_http_publish_port }}
9+
{% if elasticsearch_http_publish_port is defined %}
10+
http.publish_port: {{ elasticsearch_http_publish_port }}
1111
{% endif %}
1212

1313
{% if elasticsearch_node_types is defined %}

0 commit comments

Comments
 (0)