Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit e2ab3cf

Browse files
Merge pull request #194 from ashwinkumar12345/1.6.0
1.6.0
2 parents b007920 + eb51ead commit e2ab3cf

File tree

17 files changed

+65
-51
lines changed

17 files changed

+65
-51
lines changed

docs/elasticsearch/snapshot-restore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ readonly | Whether the repository is read-only. Useful when migrating from one c
101101
If you're using the Docker installation, see [Customize the Docker image](../../install/docker/#customize-the-docker-image). Your `Dockerfile` should look something like this:
102102

103103
```
104-
FROM amazon/opendistro-for-elasticsearch:1.4.0
104+
FROM amazon/opendistro-for-elasticsearch:1.6.0
105105

106106
ENV AWS_ACCESS_KEY_ID <access-key>
107107
ENV AWS_SECRET_ACCESS_KEY <secret-key>

docs/install/deb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ These steps assume you're using Ubuntu 18.04.
3737
1. Install Elasticsearch OSS:
3838

3939
```bash
40-
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.4.2-amd64.deb
41-
sudo dpkg -i elasticsearch-oss-7.4.2-amd64.deb
40+
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.6.1-amd64.deb
41+
sudo dpkg -i elasticsearch-oss-7.6.1-amd64.deb
4242
```
4343

4444
1. Install the latest version of Open Distro for Elasticsearch:

docs/install/docker-security.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Before deploying to a production environment, you should replace the demo securi
1616
version: '3'
1717
services:
1818
odfe-node1:
19-
image: amazon/opendistro-for-elasticsearch:1.4.0
19+
image: amazon/opendistro-for-elasticsearch:1.6.0
2020
container_name: odfe-node1
2121
environment:
2222
- cluster.name=odfe-cluster
@@ -52,7 +52,7 @@ services:
5252
networks:
5353
- odfe-net
5454
odfe-node2:
55-
image: amazon/opendistro-for-elasticsearch:1.4.0
55+
image: amazon/opendistro-for-elasticsearch:1.6.0
5656
container_name: odfe-node2
5757
environment:
5858
- cluster.name=odfe-cluster
@@ -85,7 +85,7 @@ services:
8585
networks:
8686
- odfe-net
8787
kibana:
88-
image: amazon/opendistro-for-elasticsearch-kibana:1.4.0
88+
image: amazon/opendistro-for-elasticsearch-kibana:1.6.0
8989
container_name: odfe-kibana
9090
ports:
9191
- 5601:5601

docs/install/docker.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ nav_order: 1
1010
You can pull the Open Distro for Elasticsearch Docker image just like any other image:
1111

1212
```bash
13-
docker pull amazon/opendistro-for-elasticsearch:1.4.0
14-
docker pull amazon/opendistro-for-elasticsearch-kibana:1.4.0
13+
docker pull amazon/opendistro-for-elasticsearch:1.6.0
14+
docker pull amazon/opendistro-for-elasticsearch-kibana:1.6.0
1515
```
1616

1717
To check available versions, see [Docker Hub](https://hub.docker.com/r/amazon/opendistro-for-elasticsearch/tags).
@@ -33,7 +33,7 @@ Open Distro for Elasticsearch images use `centos:7` as the base image. If you ru
3333
To run the image for local development:
3434

3535
```bash
36-
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:1.4.0
36+
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:1.6.0
3737
```
3838

3939
Then send requests to the server to verify that Elasticsearch is up and running:
@@ -86,7 +86,7 @@ This sample file starts two data nodes and Kibana.
8686
version: '3'
8787
services:
8888
odfe-node1:
89-
image: amazon/opendistro-for-elasticsearch:1.4.0
89+
image: amazon/opendistro-for-elasticsearch:1.6.0
9090
container_name: odfe-node1
9191
environment:
9292
- cluster.name=odfe-cluster
@@ -110,7 +110,7 @@ services:
110110
networks:
111111
- odfe-net
112112
odfe-node2:
113-
image: amazon/opendistro-for-elasticsearch:1.4.0
113+
image: amazon/opendistro-for-elasticsearch:1.6.0
114114
container_name: odfe-node2
115115
environment:
116116
- cluster.name=odfe-cluster
@@ -131,7 +131,7 @@ services:
131131
networks:
132132
- odfe-net
133133
kibana:
134-
image: amazon/opendistro-for-elasticsearch-kibana:1.4.0
134+
image: amazon/opendistro-for-elasticsearch-kibana:1.6.0
135135
container_name: odfe-kibana
136136
ports:
137137
- 5601:5601
@@ -164,7 +164,7 @@ docker run \
164164
-p 9200:9200 -p 9600:9600 \
165165
-e "discovery.type=single-node" \
166166
-v /<full-path-to>/custom-elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml \
167-
amazon/opendistro-for-elasticsearch:1.4.0
167+
amazon/opendistro-for-elasticsearch:1.6.0
168168
```
169169

170170
You can perform the same operation in `docker-compose.yml` using a relative path:
@@ -220,7 +220,7 @@ The `docker-compose.yml` file above also contains several key settings: `bootstr
220220
To run the image with a custom plugin, first create a [`Dockerfile`](https://docs.docker.com/engine/reference/builder/):
221221

222222
```
223-
FROM amazon/opendistro-for-elasticsearch:1.4.0
223+
FROM amazon/opendistro-for-elasticsearch:1.6.0
224224
RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install --batch <plugin-name-or-url>
225225
```
226226

@@ -234,7 +234,7 @@ docker run -p 9200:9200 -p 9600:9600 -v /usr/share/elasticsearch/data odfe-custo
234234
You can also use a `Dockerfile` to pass your own certificates for use with the [Security](../../security-configuration/) plugin, similar to the `-v` argument in [Configure Elasticsearch](#configure-elasticsearch):
235235

236236
```
237-
FROM amazon/opendistro-for-elasticsearch:1.4.0
237+
FROM amazon/opendistro-for-elasticsearch:1.6.0
238238
COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsearch/config/
239239
COPY --chown=elasticsearch:elasticsearch my-key-file.pem /usr/share/elasticsearch/config/
240240
COPY --chown=elasticsearch:elasticsearch my-certificate-chain.pem /usr/share/elasticsearch/config/
@@ -244,7 +244,7 @@ COPY --chown=elasticsearch:elasticsearch my-root-cas.pem /usr/share/elasticsearc
244244
Alternately, you might want to remove a plugin. This `Dockerfile` removes the Security plugin:
245245
246246
```
247-
FROM amazon/opendistro-for-elasticsearch:1.3.0
247+
FROM amazon/opendistro-for-elasticsearch:1.6.0
248248
RUN /usr/share/elasticsearch/bin/elasticsearch-plugin remove opendistro_security
249249
COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsearch/config/
250250
```

docs/install/helm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Run the `helm init` command to make sure you also have the Tiller server install
4949
1. Deploy Elasticsearch:
5050

5151
```bash
52-
helm install opendistro-es opendistro-es-1.4.0.tgz
52+
helm install opendistro-es opendistro-es-1.6.0.tgz
5353
```
5454

5555
If you see a `namespaces "default" is forbidden` error, create a Tiller service account and deploy with a cluster binding role, as shown in the following example. See the [Tiller documentation](https://tiller.readthedocs.io/en/latest/) for more information.
@@ -66,7 +66,7 @@ The output shows you the specifications instantiated from the install.
6666
To customize the deployment, pass in the values that you want to override with a custom YAML file:
6767

6868
```bash
69-
helm install --values=customevalues.yaml opendistro-es-1.4.0.tgz
69+
helm install --values=customevalues.yaml opendistro-es-1.6.0.tgz
7070
```
7171

7272
#### Sample output

docs/install/plugins.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,19 @@ If you don't want to use the all-in-one Open Distro for Elasticsearch installati
2929
</tr>
3030
</thead>
3131
<tbody>
32+
<tr>
33+
<td>7.6.1</td>
34+
<td>
35+
<pre>opendistro-job-scheduler 1.6.0.0
36+
opendistro-knn 1.6.0.0
37+
opendistro_alerting 1.6.0.0
38+
opendistro_index_management 1.6.0.0
39+
opendistro_performance_analyzer 1.6.0.0
40+
opendistro_security 1.6.0.0
41+
opendistro_sql 1.6.0.0
42+
</pre>
43+
</td>
44+
</tr>
3245
<tr>
3346
<td>7.4.2</td>
3447
<td>
@@ -154,7 +167,7 @@ Navigate to the Elasticsearch home directory (most likely, it is `/usr/share/ela
154167
### Security
155168

156169
```bash
157-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-security/opendistro_security-1.4.0.0.zip
170+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-security/opendistro_security-1.6.0.0.zip
158171
```
159172

160173
After installing the Security plugin, you can run `sudo sh /usr/share/elasticsearch/plugins/opendistro_security/tools/install_demo_configuration.sh` to quickly get started with demo certificates. Otherwise, you must configure it manually and run [securityadmin.sh](../../security-configuration/security-admin/).
@@ -165,7 +178,7 @@ Security has a corresponding [Kibana plugin](../../kibana/plugins) that you prob
165178
### Alerting
166179

167180
```bash
168-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-alerting/opendistro_alerting-1.4.0.0.zip
181+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-alerting/opendistro_alerting-1.6.0.0.zip
169182
```
170183

171184
Alerting has a corresponding [Kibana plugin](../../kibana/plugins) that you probably want to install as well.
@@ -174,14 +187,14 @@ Alerting has a corresponding [Kibana plugin](../../kibana/plugins) that you prob
174187
### SQL
175188

176189
```bash
177-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-sql/opendistro_sql-1.4.0.0.zip
190+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-sql/opendistro_sql-1.6.0.0.zip
178191
```
179192

180193

181194
### Index State Management
182195

183196
```bash
184-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-index-management/opendistro_index_management-1.4.0.0.zip
197+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-index-management/opendistro_index_management-1.6.0.0.zip
185198
```
186199

187200

@@ -201,7 +214,7 @@ To test this plugin, clone [the Anomaly Detection repository](https://github.com
201214
### Performance Analyzer
202215

203216
```bash
204-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/performance-analyzer/opendistro_performance_analyzer-1.4.0.0.zip
217+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/performance-analyzer/opendistro_performance_analyzer-1.6.0.0.zip
205218
```
206219

207220
Performance Analyzer requires some manual configuration after installing the plugin:

docs/install/rpm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Installing and running Open Distro for Elasticsearch from an RPM package is a mo
3535
1. Choose the version you'd like and install it:
3636

3737
```bash
38-
sudo yum install opendistroforelasticsearch-1.4.0
38+
sudo yum install opendistroforelasticsearch-1.6.0
3939
```
4040

4141
1. **If you installed Java 8**, run the following command:

docs/install/tar.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ The tarball supports CentOS 7, Amazon Linux 2, Ubuntu 18.04, and most other Linu
1414
1. Download the tarball:
1515

1616
```bash
17-
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-1.4.0.tar.gz -o opendistroforelasticsearch-1.4.0.tar.gz
17+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-1.6.0.tar.gz -o opendistroforelasticsearch-1.6.0.tar.gz
1818
```
1919

2020
1. Download the checksum:
2121

2222
```bash
23-
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-1.4.0.tar.gz.sha512 -o opendistroforelasticsearch-1.4.0.tar.gz.sha512
23+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-1.6.0.tar.gz.sha512 -o opendistroforelasticsearch-1.6.0.tar.gz.sha512
2424
```
2525

2626
1. Verify the tarball against the checksum:
2727

2828
```bash
29-
shasum -a 512 -c opendistroforelasticsearch-1.4.0.tar.gz.sha512
29+
shasum -a 512 -c opendistroforelasticsearch-1.6.0.tar.gz.sha512
3030
```
3131

3232
On CentOS, you might not have `shasum`. Install this package:
@@ -40,8 +40,8 @@ The tarball supports CentOS 7, Amazon Linux 2, Ubuntu 18.04, and most other Linu
4040
1. Extract the TAR file to a directory and change to that directory:
4141

4242
```bash
43-
tar -zxf opendistroforelasticsearch-1.4.0.tar.gz
44-
cd opendistroforelasticsearch-1.4.0
43+
tar -zxf opendistroforelasticsearch-1.6.0.tar.gz
44+
cd opendistroforelasticsearch-1.6.0
4545
```
4646

4747
1. Run Open Distro for Elasticsearch:

docs/install/windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ As an alternative, try [Ubuntu for Windows 10](https://www.microsoft.com/en-us/p
1515

1616
## ZIP install
1717

18-
1. Download [the ZIP file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/ode-windows-zip/odfe-1.4.0.zip).
18+
1. Download [the ZIP file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/ode-windows-zip/odfe-1.6.0.zip).
1919

2020
1. Extract the file to a directory, and open that directory at the command prompt.
2121

@@ -30,7 +30,7 @@ As an alternative, try [Ubuntu for Windows 10](https://www.microsoft.com/en-us/p
3030

3131
1. Install Java 11.
3232

33-
1. Download [the EXE file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/odfe-executables/Open_Distro_For_Elasticsearch_1.4.0.exe), run it, and click through the steps.
33+
1. Download [the EXE file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/odfe-executables/Open_Distro_For_Elasticsearch_1.6.0.exe), run it, and click through the steps.
3434

3535
1. Open the command prompt and navigate to the Open Distro for Elasticsearch install directory:
3636

docs/kibana/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Kibana is the default visualization tool for data in Elasticsearch. It also serv
1515

1616
You *can* start Kibana using `docker run` after [creating a Docker network](https://docs.docker.com/engine/reference/commandline/network_create/) and starting Elasticsearch, but the process of connecting Kibana to Elasticsearch is significantly easier with a Docker Compose file.
1717

18-
1. Run `docker pull amazon/opendistro-for-elasticsearch-kibana:1.4.0`.
18+
1. Run `docker pull amazon/opendistro-for-elasticsearch-kibana:1.6.0`.
1919

2020
1. Create a [`docker-compose.yml`](https://docs.docker.com/compose/compose-file/) file appropriate for your environment. A sample file that includes Kibana is available on the Open Distro for Elasticsearch [Docker installation page](../install/docker/#sample-docker-compose-file).
2121

@@ -59,19 +59,19 @@ You can also modify the values in `/etc/kibana/kibana.yml`.
5959
1. Download the tarball:
6060

6161
```bash
62-
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.4.0.tar.gz -o opendistroforelasticsearch-kibana-1.4.0.tar.gz
62+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.6.0.tar.gz -o opendistroforelasticsearch-kibana-1.6.0.tar.gz
6363
```
6464

6565
1. Download the checksum:
6666

6767
```bash
68-
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.4.0.tar.gz.sha512 -o opendistroforelasticsearch-kibana-1.4.0.tar.gz.sha512
68+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.6.0.tar.gz.sha512 -o opendistroforelasticsearch-kibana-1.6.0.tar.gz.sha512
6969
```
7070

7171
1. Verify the tarball against the checksum:
7272

7373
```bash
74-
shasum -a 512 -c opendistroforelasticsearch-kibana-1.4.0.tar.gz.sha512
74+
shasum -a 512 -c opendistroforelasticsearch-kibana-1.6.0.tar.gz.sha512
7575
```
7676

7777
On CentOS, you might not have `shasum`. Install this package:
@@ -83,7 +83,7 @@ You can also modify the values in `/etc/kibana/kibana.yml`.
8383
1. Extract the TAR file to a directory and change to that directory:
8484

8585
```bash
86-
tar -zxf opendistroforelasticsearch-kibana-1.4.0.tar.gz
86+
tar -zxf opendistroforelasticsearch-kibana-1.6.0.tar.gz
8787
cd opendistroforelasticsearch-kibana
8888
```
8989

@@ -100,7 +100,7 @@ You can also modify the values in `/etc/kibana/kibana.yml`.
100100

101101
1. Download the ZIP.
102102

103-
1. Extract [the ZIP file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/ode-windows-zip/odfe-1.4.0-kibana.zip) to a directory and open that directory at the command prompt.
103+
1. Extract [the ZIP file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/ode-windows-zip/odfe-1.6.0-kibana.zip) to a directory and open that directory at the command prompt.
104104

105105
1. If desired, modify `config/kibana.yml`.
106106

@@ -113,7 +113,7 @@ You can also modify the values in `/etc/kibana/kibana.yml`.
113113

114114
## Run Kibana on Windows (EXE)
115115

116-
1. Download [the EXE file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/odfe-executables/Open_Distro_For_Elasticsearch_Kibana_1.4.0.exe), run it, and click through the steps.
116+
1. Download [the EXE file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/odfe-executables/Open_Distro_For_Elasticsearch_Kibana_1.6.0.exe), run it, and click through the steps.
117117

118118
1. Open the command prompt.
119119

0 commit comments

Comments
 (0)