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

Commit

Permalink
Preparing for 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinkumar12345 committed Mar 24, 2020
1 parent b22ef3a commit eb51ead
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion docs/elasticsearch/snapshot-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ readonly | Whether the repository is read-only. Useful when migrating from one c
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:

```
FROM amazon/opendistro-for-elasticsearch:1.4.0
FROM amazon/opendistro-for-elasticsearch:1.6.0

ENV AWS_ACCESS_KEY_ID <access-key>
ENV AWS_SECRET_ACCESS_KEY <secret-key>
Expand Down
14 changes: 7 additions & 7 deletions docs/kibana/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Kibana is the default visualization tool for data in Elasticsearch. It also serv

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.

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

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).

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

```bash
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.4.0.tar.gz -o opendistroforelasticsearch-kibana-1.4.0.tar.gz
curl https://d3g5vo6xdbdb9a.cloudfront.net/tarball/opendistroforelasticsearch-kibana/opendistroforelasticsearch-kibana-1.6.0.tar.gz -o opendistroforelasticsearch-kibana-1.6.0.tar.gz
```

1. Download the checksum:

```bash
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
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
```

1. Verify the tarball against the checksum:

```bash
shasum -a 512 -c opendistroforelasticsearch-kibana-1.4.0.tar.gz.sha512
shasum -a 512 -c opendistroforelasticsearch-kibana-1.6.0.tar.gz.sha512
```

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

```bash
tar -zxf opendistroforelasticsearch-kibana-1.4.0.tar.gz
tar -zxf opendistroforelasticsearch-kibana-1.6.0.tar.gz
cd opendistroforelasticsearch-kibana
```

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

1. Download the ZIP.

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.
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.

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

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

## Run Kibana on Windows (EXE)

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.
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.

1. Open the command prompt.

Expand Down
6 changes: 3 additions & 3 deletions docs/kibana/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Navigate to the Kibana home directory (likely `/usr/share/kibana`) and run the i
#### Security

```bash
sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-security/opendistro_security_kibana_plugin-1.4.0.0.zip
sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-security/opendistro_security_kibana_plugin-1.6.0.0.zip
```

This plugin provides a user interface for managing users, roles, mappings, action groups, and tenants.
Expand All @@ -34,7 +34,7 @@ This plugin provides a user interface for managing users, roles, mappings, actio
#### Alerting

```bash
sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-alerting/opendistro-alerting-1.4.0.0.zip
sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-alerting/opendistro-alerting-1.6.0.0.zip
```

This plugin provides a user interface for creating monitors and managing alerts.
Expand All @@ -43,7 +43,7 @@ This plugin provides a user interface for creating monitors and managing alerts.
#### Index State Management

```bash
sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-index-management/opendistro_index_management_kibana-1.4.0.0.zip
sudo bin/kibana-plugin install https://d3g5vo6xdbdb9a.cloudfront.net/downloads/kibana-plugins/opendistro-index-management/opendistro_index_management_kibana-1.6.0.0.zip
```

This plugin provides a user interface for managing policies.
Expand Down
8 changes: 4 additions & 4 deletions docs/security-access-control/cross-cluster-search.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Save this file as `docker-compose.yml` and run `docker-compose up` to start two
version: '3'
services:
odfe-node1:
image: amazon/opendistro-for-elasticsearch:1.4.0
image: amazon/opendistro-for-elasticsearch:1.6.0
container_name: odfe-node1
environment:
- cluster.name=odfe-cluster1
Expand All @@ -85,7 +85,7 @@ services:
- odfe-net
odfe-node2:
image: amazon/opendistro-for-elasticsearch:1.4.0
image: amazon/opendistro-for-elasticsearch:1.6.0
container_name: odfe-node2
environment:
- cluster.name=odfe-cluster2
Expand Down Expand Up @@ -134,8 +134,8 @@ To get the IP address for the remote cluster, first identify its container ID:
```bash
docker ps
CONTAINER ID IMAGE PORTS NAMES
6fe89ebc5a8e amazon/opendistro-for-elasticsearch:1.4.0 0.0.0.0:9200->9200/tcp, 0.0.0.0:9600->9600/tcp, 9300/tcp odfe-node1
2da08b6c54d8 amazon/opendistro-for-elasticsearch:1.4.0 9300/tcp, 0.0.0.0:9250->9200/tcp, 0.0.0.0:9700->9600/tcp odfe-node2
6fe89ebc5a8e amazon/opendistro-for-elasticsearch:1.6.0 0.0.0.0:9200->9200/tcp, 0.0.0.0:9600->9600/tcp, 9300/tcp odfe-node1
2da08b6c54d8 amazon/opendistro-for-elasticsearch:1.6.0 9300/tcp, 0.0.0.0:9250->9200/tcp, 0.0.0.0:9700->9600/tcp odfe-node2
```

Then get that container's IP address:
Expand Down
4 changes: 2 additions & 2 deletions docs/security-configuration/disable.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If you disable the Security plugin in `elasticsearch.yml` (or delete the plugin
1. Create a new `Dockerfile`:

```
FROM amazon/opendistro-for-elasticsearch-kibana:1.4.0
FROM amazon/opendistro-for-elasticsearch-kibana:1.6.0
RUN /usr/share/kibana/bin/kibana-plugin remove opendistro_security
COPY --chown=kibana:kibana kibana.yml /usr/share/kibana/config/
```
Expand All @@ -62,7 +62,7 @@ If you disable the Security plugin in `elasticsearch.yml` (or delete the plugin
docker build --tag=kibana-no-security .
```

1. In `docker-compose.yml`, change `amazon/opendistro-for-elasticsearch-kibana:1.4.0` to `kibana-no-security`.
1. In `docker-compose.yml`, change `amazon/opendistro-for-elasticsearch-kibana:1.6.0` to `kibana-no-security`.
1. Change `ELASTICSEARCH_URL` (`docker-compose.yml`) or `elasticsearch.url` (your custom `kibana.yml`) to `http://` rather than `https://`.
1. Change `ELASTICSEARCH_HOSTS` or `elasticsearch.hosts` to `http://` rather than `https://`.
1. Enter `docker-compose up`.
2 changes: 1 addition & 1 deletion docs/upgrade/cluster-restart.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The steps on this page are most applicable if you installed Open Distro for Elas
Alternately, `yum` lets you upgrade to a specific version of Open Distro for Elasticsearch:

```bash
sudo yum install opendistro-for-elasticsearch-1.4.0
sudo yum install opendistro-for-elasticsearch-1.6.0
```

Unfortunately, `apt` upgrades dependencies to their latest versions and thus only supports upgrades to the newest version of Open Distro for Elasticsearch.
Expand Down
2 changes: 1 addition & 1 deletion docs/upgrade/rolling.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The steps on this page are most applicable if you installed Open Distro for Elas
Alternately, `yum` lets you upgrade to a specific version of Open Distro for Elasticsearch:

```bash
sudo yum install opendistro-for-elasticsearch-1.4.0
sudo yum install opendistro-for-elasticsearch-1.6.0
```

Unfortunately, `apt` upgrades dependencies to their latest versions and thus only supports upgrades to the newest version of Open Distro for Elasticsearch.
Expand Down
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ Docker
1. Run the following commands:

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

1. In a new terminal session, run:
Expand Down
1 change: 1 addition & 0 deletions version-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ permalink: /version-history/

Open Distro for Elasticsearch version | Release highlights | Release date | Elasticsearch version
:--- | :--- | :--- | :---
1.6.0 | Bumps Elasticsearch version. | 30 March 2020 | 7.6.1
1.4.0 | Adds the [KNN](../docs/knn/) plugin for Elasticsearch to the Docker image, adds account management to the Security plugin API and Kibana, and bumps Elasticsearch version. | 10 February 2020 | 7.4.2
1.3.0 | Adds [Index State Management](../docs/ism/) plugins for Elasticsearch and Kibana and bumps Elasticsearch version. | 17 December 2019 | 7.3.2
1.2.1 | Bumps Elasticsearch version. | 4 November 2019 | 7.2.1
Expand Down

0 comments on commit eb51ead

Please sign in to comment.