Skip to content

Commit

Permalink
Update Elasticsearch version to 1.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aloysius Lim committed Jun 17, 2015
1 parent 1eb50dc commit 67042eb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.1.2 (2015-06-17)

Update default version of Elasticsearch to 1.6.0.

## v0.1.1 (2015-05-21)

Fix whitespace in Jinja templates.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Operating System | Release | Status
centos | 6 | [![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square)](#) [![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square)](#) |
centos | 7 | [![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square)](#) [![Docker failed](https://img.shields.io/badge/docker-failed-red.svg?style=flat-square)](#) |
debian | wheezy | [![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square)](#) [![Docker failed](https://img.shields.io/badge/docker-failed-red.svg?style=flat-square)](#) |
debian | jessie | [![Vagrant failed](https://img.shields.io/badge/vagrant-failed-red.svg?style=flat-square)](#) [![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square)](#) |
debian | jessie | [![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square)](#) [![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square)](#) |
ubuntu | precise | [![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square)](#) [![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square)](#) |
ubuntu | trusty | [![Vagrant passed](https://img.shields.io/badge/vagrant-passed-brightgreen.svg?style=flat-square)](#) [![Docker passed](https://img.shields.io/badge/docker-passed-brightgreen.svg?style=flat-square)](#) |

Expand All @@ -34,8 +34,8 @@ This role allows you to fully configure Elasticsearch using variables. Besides v

These variables control the behavior of the role:

* `es_release`: The release of Elasticsearch to install (default: `"1.5"`).
* `es_version`: The version of Elasticsearch to install (default: `"1.5.2"`).
* `es_release`: The release of Elasticsearch to install (default: `"1.6"`).
* `es_version`: The version of Elasticsearch to install (default: `"1.6.0"`).
* `es_wait_for_listen`: If set to true, whenever Elasticsearch is restarted, the playbook will wait for Elasticsearch to respond on port `es_etc_http_port` (default: `9200`) before proceeding (default: `"yes"`).

### /etc/default/elasticsearch
Expand Down
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# Elasticsearch release and version to install
es_release: "1.5"
es_version: "{{ es_release }}.2"
es_release: "1.6"
es_version: "{{ es_release }}.0"

# Wait for elasticsearch to be listening for connections before proceeding
# (e.g. after install / restart)
Expand Down

0 comments on commit 67042eb

Please sign in to comment.