prepare release elasticsearch-cloud-azure-2.0.0

This commit is contained in:
David Pilato 2014-02-14 18:33:45 +01:00
parent f06e54e59a
commit 96c60413b8
2 changed files with 17 additions and 14 deletions

View File

@ -3,11 +3,15 @@ Azure Cloud Plugin for Elasticsearch
The Azure Cloud plugin allows to use Azure API for the unicast discovery mechanism. The Azure Cloud plugin allows to use Azure API for the unicast discovery mechanism.
In order to install the plugin, simply run: `bin/plugin -install elasticsearch/elasticsearch-cloud-azure/1.0.0.alpha1`. In order to install the plugin, simply run: `bin/plugin -install elasticsearch/elasticsearch-cloud-azure/2.0.0`.
For 1.0.x elasticsearch versions, look at [master branch](https://github.com/elasticsearch/elasticsearch-cloud-azure/tree/master).
For 0.90.x elasticsearch versions, look at [1.x branch](https://github.com/elasticsearch/elasticsearch-cloud-azure/tree/1.x).
| Azure Cloud Plugin | elasticsearch | Release date | | Azure Cloud Plugin | elasticsearch | Release date |
|-----------------------------|---------------------|:------------:| |-----------------------------|---------------------|:------------:|
| 2.0.0.RC1-SNAPSHOT (master) | 1.0.0.RC1 -> master | | | 2.0.0.RC1-SNAPSHOT (master) | 1.0 -> master | |
| 2.0.0 | 1.0 -> master | 2014-02-14 |
| 1.0.0-SNAPSHOT (1.x) | 0.90.6 -> 0.90 | | | 1.0.0-SNAPSHOT (1.x) | 0.90.6 -> 0.90 | |
| 1.0.0.alpha1 | 0.90.6 -> 0.90 | 2013-11-06 | | 1.0.0.alpha1 | 0.90.6 -> 0.90 | 2013-11-06 |
@ -207,10 +211,10 @@ sudo apt-get update
sudo apt-get install openjdk-7-jre-headless sudo apt-get install openjdk-7-jre-headless
# Download Elasticsearch # Download Elasticsearch
curl -s https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.6.deb -o elasticsearch-0.90.6.deb curl -s https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.0.0.deb -o elasticsearch-1.0.0.deb
# Prepare Elasticsearch installation # Prepare Elasticsearch installation
sudo dpkg -i elasticsearch-0.90.6.deb sudo dpkg -i elasticsearch-1.0.0.deb
``` ```
Check that elasticsearch is running: Check that elasticsearch is running:
@ -223,15 +227,14 @@ This command should give you a JSON result:
```javascript ```javascript
{ {
"ok" : true,
"status" : 200, "status" : 200,
"name" : "Grey, Dr. John", "name" : "Living Colossus",
"version" : { "version" : {
"number" : "0.90.6", "number" : "1.0.0",
"build_hash" : "e2a24efdde0cb7cc1b2071ffbbd1fd874a6d8d6b", "build_hash" : "a46900e9c72c0a623d71b54016357d5f94c8ea32",
"build_timestamp" : "2013-11-04T13:44:16Z", "build_timestamp" : "2014-02-12T16:18:34Z",
"build_snapshot" : false, "build_snapshot" : false,
"lucene_version" : "4.5.1" "lucene_version" : "4.6"
}, },
"tagline" : "You Know, for Search" "tagline" : "You Know, for Search"
} }
@ -244,7 +247,7 @@ This command should give you a JSON result:
sudo service elasticsearch stop sudo service elasticsearch stop
# Install the plugin # Install the plugin
sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-cloud-azure/1.0.0.alpha1 sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-cloud-azure/2.0.0
# Configure it # Configure it
sudo vi /etc/elasticsearch/elasticsearch.yml sudo vi /etc/elasticsearch/elasticsearch.yml

View File

@ -17,7 +17,7 @@ governing permissions and limitations under the License. -->
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.elasticsearch</groupId> <groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-cloud-azure</artifactId> <artifactId>elasticsearch-cloud-azure</artifactId>
<version>2.0.0.RC1-SNAPSHOT</version> <version>2.0.0</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<description>Azure Cloud plugin for Elasticsearch</description> <description>Azure Cloud plugin for Elasticsearch</description>
<inceptionYear>2013</inceptionYear> <inceptionYear>2013</inceptionYear>
@ -42,8 +42,8 @@ governing permissions and limitations under the License. -->
</parent> </parent>
<properties> <properties>
<elasticsearch.version>1.0.0.RC1-SNAPSHOT</elasticsearch.version> <elasticsearch.version>1.0.0</elasticsearch.version>
<lucene.version>4.6.0</lucene.version> <lucene.version>4.6.1</lucene.version>
<tests.output>onerror</tests.output> <tests.output>onerror</tests.output>
<tests.jvms>1</tests.jvms> <tests.jvms>1</tests.jvms>
<tests.shuffle>true</tests.shuffle> <tests.shuffle>true</tests.shuffle>