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

Commit b2ce7a3

Browse files
committed
Preparing for 1.8.0
1 parent 5bb2ed4 commit b2ce7a3

File tree

17 files changed

+67
-52
lines changed

17 files changed

+67
-52
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.7.0
104+
FROM amazon/opendistro-for-elasticsearch:1.8.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
@@ -43,8 +43,8 @@ These steps assume you're using Ubuntu 18.04.
4343
1. Install Elasticsearch OSS:
4444

4545
```bash
46-
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.6.1-amd64.deb
47-
sudo dpkg -i elasticsearch-oss-7.6.1-amd64.deb
46+
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.7.0-amd64.deb
47+
sudo dpkg -i elasticsearch-oss-7.7.0-amd64.deb
4848
```
4949

5050
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.7.0
19+
image: amazon/opendistro-for-elasticsearch:1.8.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.7.0
55+
image: amazon/opendistro-for-elasticsearch:1.8.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.7.0
88+
image: amazon/opendistro-for-elasticsearch-kibana:1.8.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.7.0
14-
docker pull amazon/opendistro-for-elasticsearch-kibana:1.7.0
13+
docker pull amazon/opendistro-for-elasticsearch:1.8.0
14+
docker pull amazon/opendistro-for-elasticsearch-kibana:1.8.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.7.0
36+
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:1.8.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.7.0
89+
image: amazon/opendistro-for-elasticsearch:1.8.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.7.0
113+
image: amazon/opendistro-for-elasticsearch:1.8.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.7.0
134+
image: amazon/opendistro-for-elasticsearch-kibana:1.8.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.7.0
167+
amazon/opendistro-for-elasticsearch:1.8.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.7.0
223+
FROM amazon/opendistro-for-elasticsearch:1.8.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.7.0
237+
FROM amazon/opendistro-for-elasticsearch:1.8.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.7.0
247+
FROM amazon/opendistro-for-elasticsearch:1.8.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.7.0.tgz
52+
helm install opendistro-es opendistro-es-1.8.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.7.0.tgz
69+
helm install --values=customevalues.yaml opendistro-es-1.8.0.tgz
7070
```
7171

7272
#### Sample output

docs/install/plugins.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ 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.7.0</td>
34+
<td>
35+
<pre>opendistro-anomaly-detection 1.8.0.0
36+
opendistro-job-scheduler 1.8.0.0
37+
opendistro-knn 1.8.0.0
38+
opendistro_alerting 1.8.0.0
39+
opendistro_index_management 1.8.0.0
40+
opendistro_performance_analyzer 1.8.0.0
41+
opendistro_security 1.8.0.0
42+
opendistro_sql 1.8.0.0
43+
</pre>
44+
</td>
45+
</tr>
3246
<tr>
3347
<td>7.6.1</td>
3448
<td>
@@ -168,7 +182,7 @@ Navigate to the Elasticsearch home directory (most likely, it is `/usr/share/ela
168182
### Security
169183

170184
```bash
171-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-security/opendistro_security-1.7.0.0.zip
185+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-security/opendistro_security-1.8.0.0.zip
172186
```
173187

174188
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/).
@@ -179,14 +193,14 @@ Security has a corresponding [Kibana plugin](../../kibana/plugins) that you prob
179193
### Job Scheduler
180194

181195
```bash
182-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-job-scheduler/opendistro-job-scheduler-1.7.0.0.zip
196+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-job-scheduler/opendistro-job-scheduler-1.8.0.0.zip
183197
```
184198

185199

186200
### Alerting
187201

188202
```bash
189-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-alerting/opendistro_alerting-1.7.0.0.zip
203+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-alerting/opendistro_alerting-1.8.0.0.zip
190204
```
191205

192206
To install Alerting, you must first install the Job Scheduler plugin. Alerting has a corresponding [Kibana plugin](../../kibana/plugins) that you probably want to install as well.
@@ -195,14 +209,14 @@ To install Alerting, you must first install the Job Scheduler plugin. Alerting h
195209
### SQL
196210

197211
```bash
198-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-sql/opendistro_sql-1.7.0.0.zip
212+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-sql/opendistro_sql-1.8.0.0.zip
199213
```
200214

201215

202216
### Index State Management
203217

204218
```bash
205-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-index-management/opendistro_index_management-1.7.0.0.zip
219+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-index-management/opendistro_index_management-1.8.0.0.zip
206220
```
207221

208222
To install Index State Management, you must first install the Job Scheduler plugin.
@@ -216,14 +230,14 @@ KNN is only available as part of the all-in-one installs: Docker, RPM, and Debia
216230
### Anomaly Detection
217231

218232
```bash
219-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-anomaly-detection/opendistro-anomaly-detection-1.7.0.0.zip
233+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/opendistro-anomaly-detection/opendistro-anomaly-detection-1.8.0.0.zip
220234
```
221235

222236

223237
### Performance Analyzer
224238

225239
```bash
226-
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/performance-analyzer/opendistro_performance_analyzer-1.7.0.0.zip
240+
sudo bin/elasticsearch-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/elasticsearch-plugins/performance-analyzer/opendistro_performance_analyzer-1.8.0.0.zip
227241
```
228242

229243
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
@@ -41,7 +41,7 @@ Installing and running Open Distro for Elasticsearch from an RPM package is a mo
4141
1. Choose the version you'd like and install it:
4242

4343
```bash
44-
sudo yum install opendistroforelasticsearch-1.7.0
44+
sudo yum install opendistroforelasticsearch-1.8.0
4545
```
4646

4747
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.7.0.tar.gz -o opendistroforelasticsearch-1.7.0.tar.gz
17+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistro-elasticsearch/opendistroforelasticsearch-1.8.0.tar.gz -o opendistroforelasticsearch-1.8.0.tar.gz
1818
```
1919

2020
1. Download the checksum:
2121

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

2626
1. Verify the tarball against the checksum:
2727

2828
```bash
29-
shasum -a 512 -c opendistroforelasticsearch-1.7.0.tar.gz.sha512
29+
shasum -a 512 -c opendistroforelasticsearch-1.8.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.7.0.tar.gz
44-
cd opendistroforelasticsearch-1.7.0
43+
tar -zxf opendistroforelasticsearch-1.8.0.tar.gz
44+
cd opendistroforelasticsearch-1.8.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.7.0.zip).
18+
1. Download [the ZIP file](https://d3g5vo6xdbdb9a.cloudfront.net/downloads/odfe-windows/ode-windows-zip/odfe-1.8.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.6.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.8.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: 6 additions & 6 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.7.0`.
18+
1. Run `docker pull amazon/opendistro-for-elasticsearch-kibana:1.8.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.7.0.tar.gz -o opendistroforelasticsearch-kibana-1.7.0.tar.gz
62+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.8.0.tar.gz -o opendistroforelasticsearch-kibana-1.8.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.7.0.tar.gz.sha512 -o opendistroforelasticsearch-kibana-1.7.0.tar.gz.sha512
68+
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.8.0.tar.gz.sha512 -o opendistroforelasticsearch-kibana-1.8.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.7.0.tar.gz.sha512
74+
shasum -a 512 -c opendistroforelasticsearch-kibana-1.8.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.7.0.tar.gz
86+
tar -zxf opendistroforelasticsearch-kibana-1.8.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.7.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.8.0-kibana.zip) to a directory and open that directory at the command prompt.
104104

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

0 commit comments

Comments
 (0)