Add playbook to create the index
Cette révision appartient à :
Parent
94af9997e0
révision
ee0dc13faf
1 fichiers modifiés avec 18 ajouts et 0 suppressions
18
deploy/ansible/create_elasticsearch_index.yml
Fichier normal
18
deploy/ansible/create_elasticsearch_index.yml
Fichier normal
|
@ -0,0 +1,18 @@
|
|||
- name: Create elasticsearch index
|
||||
hosts: dbs
|
||||
roles:
|
||||
- common
|
||||
- elasticsearch
|
||||
|
||||
tasks:
|
||||
- name: Read configuration file
|
||||
shell: cat "{{ nyaapantsu_directory }}/elasticsearch_settings.yml"
|
||||
register: config
|
||||
|
||||
- name: Configure elasticsearch index
|
||||
uri:
|
||||
headers:
|
||||
Content-Type: application/yaml
|
||||
url: "http://localhost:9200/{{ nyaapantsu_elasticsearch_index }}"
|
||||
method: PUT
|
||||
body: "{{ config.stdout }}"
|
Référencer dans un nouveau ticket