├── LICENSE ├── README.md ├── defaults └── main.yml ├── ops_es_tools.yml ├── tasks ├── _rolling_restart.yml ├── create_index.yml ├── main.yml ├── optimize_cluster.yml ├── optimize_index.yml ├── rack_awareness.yml ├── rolling_restart.yml ├── routing_allocation.yml ├── update_refresh_time.yml └── update_replicas.yml └── vars ├── create_index.yml ├── optimize_cluster.yml ├── optimize_index.yml ├── rack_awareness.yml ├── rolling_restart.yml ├── routing_allocation.yml ├── update_refresh_time.yml └── update_replicas.yml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /ops_es_tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/ops_es_tools.yml -------------------------------------------------------------------------------- /tasks/_rolling_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/_rolling_restart.yml -------------------------------------------------------------------------------- /tasks/create_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/create_index.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/optimize_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/optimize_cluster.yml -------------------------------------------------------------------------------- /tasks/optimize_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/optimize_index.yml -------------------------------------------------------------------------------- /tasks/rack_awareness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/rack_awareness.yml -------------------------------------------------------------------------------- /tasks/rolling_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/rolling_restart.yml -------------------------------------------------------------------------------- /tasks/routing_allocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/routing_allocation.yml -------------------------------------------------------------------------------- /tasks/update_refresh_time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/update_refresh_time.yml -------------------------------------------------------------------------------- /tasks/update_replicas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/tasks/update_replicas.yml -------------------------------------------------------------------------------- /vars/create_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/create_index.yml -------------------------------------------------------------------------------- /vars/optimize_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/optimize_cluster.yml -------------------------------------------------------------------------------- /vars/optimize_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/optimize_index.yml -------------------------------------------------------------------------------- /vars/rack_awareness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/rack_awareness.yml -------------------------------------------------------------------------------- /vars/rolling_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/rolling_restart.yml -------------------------------------------------------------------------------- /vars/routing_allocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/routing_allocation.yml -------------------------------------------------------------------------------- /vars/update_refresh_time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/update_refresh_time.yml -------------------------------------------------------------------------------- /vars/update_replicas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synthesio/infra-ansible-es-tools/HEAD/vars/update_replicas.yml --------------------------------------------------------------------------------