@@ -5,13 +5,13 @@ The GCE Cloud plugin allows to use GCE API for the unicast discovery mechanism.
5
5
6
6
In order to install the plugin, simply run: ` bin/plugin -install elasticsearch/elasticsearch-cloud-gce/2.0.0.RC1 ` .
7
7
8
- | GCE Cloud Plugin | elasticsearch | Release date |
9
- | ----------------------------| ---------------------| :------------:|
10
- | 2.0.0-SNAPSHOT (master) | 1.0.0.RC1 -> master | |
11
- | 2.0.0.RC1 | 1.0.0.RC1 -> master | 2014-01-15 |
12
- | 1.2.0-SNAPSHOT (1.x) | 0.90.3 -> 0.90 | |
13
- | 1.1.0 | 0.90.3 -> 0.90 | 2013-08-09 |
14
- | 1.0.0 | 0.90.0 -> 0.90.2 | 2013-07-23 |
8
+ | GCE Cloud Plugin | elasticsearch | gce api | Release date |
9
+ | ----------------------------| ---------------------| -------------- | :------------:|
10
+ | 2.0.0-SNAPSHOT (master) | 1.0.0.RC1 -> master | 1.17.0-rc | |
11
+ | 2.0.0.RC1 | 1.0.0.RC1 -> master | 1.15.0-rc | 2014-01-15 |
12
+ | 1.2.0-SNAPSHOT (1.x) | 0.90.3 -> 0.90 | 1.17.0-rc | |
13
+ | 1.1.0 | 0.90.3 -> 0.90 | 1.15.0-rc | 2013-08-09 |
14
+ | 1.0.0 | 0.90.0 -> 0.90.2 | 1.15.0-rc | 2013-07-23 |
15
15
16
16
17
17
Google Compute Engine Virtual Machine Discovery
@@ -98,13 +98,13 @@ sudo apt-get update
98
98
sudo apt-get install curl
99
99
100
100
# Download Elasticsearch
101
- curl https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.2.deb -o elasticsearch-0.90.2 .deb
101
+ wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.0.0.RC1 .deb
102
102
103
103
# Prepare Java installation
104
104
sudo apt-get install java7-runtime-headless
105
105
106
106
# Prepare Elasticsearch installation
107
- sudo dpkg -i elasticsearch-0.90.2 .deb
107
+ sudo dpkg -i elasticsearch-1.0.0.RC1 .deb
108
108
109
109
# Check that elasticsearch is running:
110
110
curl http://localhost:9200/
@@ -116,10 +116,13 @@ This command should give you a JSON result:
116
116
{
117
117
"ok" : true,
118
118
"status" : 200,
119
- "name" : "Lunatica ",
119
+ "name" : "Shriker ",
120
120
"version" : {
121
- "number" : "0.90.2",
122
- "snapshot_build" : false
121
+ "number" : "1.0.0.RC1",
122
+ "build_hash" : "0a5781f44876e8d1c30b6360628d59cb2a7a2bbb",
123
+ "build_timestamp" : "2014-01-10T10:18:37Z",
124
+ "build_snapshot" : false,
125
+ "lucene_version" : "4.6"
123
126
},
124
127
"tagline" : "You Know, for Search"
125
128
}
@@ -131,8 +134,7 @@ Install the plugin:
131
134
132
135
` ` ` sh
133
136
# Use Plugin Manager to install it
134
- sudo /usr/share/elasticsearch/bin/plugin
135
- --install elasticsearch/elasticsearch-cloud-gce/1.1.0
137
+ sudo /usr/share/elasticsearch/bin/plugin --install elasticsearch/elasticsearch-cloud-gce/2.0.0.RC1
136
138
137
139
# Configure it:
138
140
sudo vi /etc/elasticsearch/elasticsearch.yml
@@ -206,7 +208,7 @@ gcutil listkernels --project es-cloud
206
208
| projects/google/global/kernels/gce-v20130603 | SCSI-enabled 3.3.8-gcg built 2013-05-29 01:04:00 | |
207
209
+----------------------------------------------+--------------------------------------------------+-------------+
208
210
# Note the kernel you prefer to use and add your image to your catalog:
209
- gcutil --project=es-cloud addimage elasticsearch-0-90-2 \
211
+ gcutil --project=es-cloud addimage elasticsearch-1-0-0-RC1 \
210
212
gs://esimage/e4686d7f5bf904a924ae0cfeb58d0827c6d5b966.image.tar.gz \
211
213
--preferred_kernel=projects/google/global/kernels/gce-v20130603
212
214
@@ -220,7 +222,7 @@ As you have now an image, you can create as many instances as you need:
220
222
221
223
``` sh
222
224
# Just change node name (here myesnode2)
223
- gcutil --project=es-cloud addinstance --image=elasticsearch-0-90-2 \
225
+ gcutil --project=es-cloud addinstance --image=elasticsearch-1-0-0-RC1 \
224
226
--kernel=projects/google/global/kernels/gce-v20130603 myesnode2 \
225
227
--zone europe-west1-a --machine_type f1-micro --service_account_scope=compute-rw \
226
228
--persistent_boot_disk
@@ -293,7 +295,7 @@ gcutil --project=es-cloud addinstance myesnode1 \
293
295
--metadata=es_port:9301
294
296
295
297
# when creating an instance from an image
296
- gcutil --project=es-cloud addinstance --image=elasticsearch-0-90-2 \
298
+ gcutil --project=es-cloud addinstance --image=elasticsearch-1-0-0-RC1 \
297
299
--kernel=projects/google/global/kernels/gce-v20130603 myesnode2 \
298
300
--zone europe-west1-a --machine_type f1-micro --service_account_scope=compute-rw \
299
301
--persistent_boot_disk --metadata=es_port:9301
@@ -340,7 +342,7 @@ License
340
342
341
343
This software is licensed under the Apache 2 license, quoted below.
342
344
343
- Copyright 2009-2013 ElasticSearch <http://www.elasticsearch.org>
345
+ Copyright 2009-2014 Elasticsearch <http://www.elasticsearch.org>
344
346
345
347
Licensed under the Apache License, Version 2.0 (the "License"); you may not
346
348
use this file except in compliance with the License. You may obtain a copy of
0 commit comments