Update install-elasticsearch.yml
adding config updates
This commit is contained in:
parent
104d8a29d8
commit
e38755d897
@ -31,6 +31,26 @@
|
|||||||
apt:
|
apt:
|
||||||
name: elasticsearch
|
name: elasticsearch
|
||||||
|
|
||||||
|
|
||||||
|
# This will work on a new install.
|
||||||
|
# If any changes are needed to the cluster name on an existing install add another function
|
||||||
|
- name: Config - cluster.name 'elastic-DMI01'
|
||||||
|
become: true
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/elasticsearch/elasticsearch.yml
|
||||||
|
regex: '^cluster.name'
|
||||||
|
insertafter: '#cluster.name: my-application'
|
||||||
|
line: 'cluster.name: elastic-DMI01'
|
||||||
|
backup: yes
|
||||||
|
|
||||||
|
- name: Config - node.name
|
||||||
|
become: true
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/elasticsearch/elasticsearch.yml
|
||||||
|
regex: '^node.name'
|
||||||
|
insertafter: '#node.name: node-1'
|
||||||
|
line: "node.name: {{ ansible_eno1.ipv4.address }}"
|
||||||
|
|
||||||
- name: Allow port 9200 though UFW
|
- name: Allow port 9200 though UFW
|
||||||
become: true
|
become: true
|
||||||
ufw:
|
ufw:
|
||||||
|
Loading…
Reference in New Issue
Block a user