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

Commit 3d33d8b

Browse files
authored
Merge pull request #41 from opendistro/0.8.0
Preparing for 0.8.0
2 parents 3daa07b + 31a5840 commit 3d33d8b

File tree

6 files changed

+20
-19
lines changed

6 files changed

+20
-19
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 [Run with custom plugins](../../install/docker/#run-with-custom-plugins). Your `Dockerfile` should look something like this:
102102

103103
```
104-
FROM amazon/opendistro-for-elasticsearch:0.7.1
104+
FROM amazon/opendistro-for-elasticsearch:0.8.0
105105

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

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:0.7.1
19+
image: amazon/opendistro-for-elasticsearch:0.8.0
2020
container_name: odfe-node1
2121
environment:
2222
- cluster.name=odfe-cluster
@@ -42,7 +42,7 @@ services:
4242
networks:
4343
- odfe-net
4444
odfe-node2:
45-
image: amazon/opendistro-for-elasticsearch:0.7.1
45+
image: amazon/opendistro-for-elasticsearch:0.8.0
4646
container_name: odfe-node2
4747
environment:
4848
- cluster.name=odfe-cluster
@@ -66,7 +66,7 @@ services:
6666
networks:
6767
- odfe-net
6868
kibana:
69-
image: amazon/opendistro-for-elasticsearch-kibana:0.7.1
69+
image: amazon/opendistro-for-elasticsearch-kibana:0.8.0
7070
container_name: odfe-kibana
7171
ports:
7272
- 5601:5601

docs/install/docker.md

Lines changed: 9 additions & 9 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:0.7.1
14-
docker pull amazon/opendistro-for-elasticsearch-kibana:0.7.1
13+
docker pull amazon/opendistro-for-elasticsearch:0.8.0
14+
docker pull amazon/opendistro-for-elasticsearch-kibana:0.8.0
1515
```
1616

1717
Open Distro for Elasticsearch images use `centos:7` as the base image.
@@ -31,7 +31,7 @@ Open Distro for Elasticsearch images use `centos:7` as the base image.
3131
To run the image for local development:
3232

3333
```bash
34-
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:0.7.1
34+
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:0.8.0
3535
```
3636

3737
Then send requests to the server to verify that Elasticsearch is up and running:
@@ -84,7 +84,7 @@ This sample file starts two data nodes and Kibana. If you're running Docker loca
8484
version: '3'
8585
services:
8686
odfe-node1:
87-
image: amazon/opendistro-for-elasticsearch:0.7.1
87+
image: amazon/opendistro-for-elasticsearch:0.8.0
8888
container_name: odfe-node1
8989
environment:
9090
- cluster.name=odfe-cluster
@@ -102,7 +102,7 @@ services:
102102
networks:
103103
- odfe-net
104104
odfe-node2:
105-
image: amazon/opendistro-for-elasticsearch:0.7.1
105+
image: amazon/opendistro-for-elasticsearch:0.8.0
106106
container_name: odfe-node2
107107
environment:
108108
- cluster.name=odfe-cluster
@@ -118,7 +118,7 @@ services:
118118
networks:
119119
- odfe-net
120120
kibana:
121-
image: amazon/opendistro-for-elasticsearch-kibana:0.7.1
121+
image: amazon/opendistro-for-elasticsearch-kibana:0.8.0
122122
container_name: odfe-kibana
123123
ports:
124124
- 5601:5601
@@ -150,7 +150,7 @@ docker run \
150150
-p 9200:9200 -p 9600:9600 \
151151
-e "discovery.type=single-node" \
152152
-v /<full-path-to>/custom-elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml \
153-
amazon/opendistro-for-elasticsearch:0.7.1
153+
amazon/opendistro-for-elasticsearch:0.8.0
154154
```
155155

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

208208
```
209-
FROM amazon/opendistro-for-elasticsearch:0.7.1
209+
FROM amazon/opendistro-for-elasticsearch:0.8.0
210210
RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install --batch <plugin-name-or-url>
211211
```
212212

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

222222
```
223-
FROM amazon/opendistro-for-elasticsearch:0.7.1
223+
FROM amazon/opendistro-for-elasticsearch:0.8.0
224224
COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsearch/config/
225225
COPY --chown=elasticsearch:elasticsearch my-key-file.pem /usr/share/elasticsearch/config/
226226
COPY --chown=elasticsearch:elasticsearch my-certificate-chain.pem /usr/share/elasticsearch/config/

docs/kibana/index.md

Lines changed: 1 addition & 1 deletion
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:0.7.1`.
18+
1. Run `docker pull amazon/opendistro-for-elasticsearch-kibana:0.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

docs/security/disable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ After the removal of any plugin, Kibana performs an "optimize" operation the nex
4141
1. Create a new `Dockerfile`:
4242

4343
```
44-
FROM amazon/opendistro-for-elasticsearch-kibana:0.7.1
44+
FROM amazon/opendistro-for-elasticsearch-kibana:0.8.0
4545
RUN /usr/share/kibana/bin/kibana-plugin remove opendistro_security
4646
```
4747

@@ -51,7 +51,7 @@ After the removal of any plugin, Kibana performs an "optimize" operation the nex
5151
docker build --tag=kibana-no-security .
5252
```
5353

54-
1. In `docker-compose.yml`, change `amazon/opendistro-for-elasticsearch-kibana:0.7.1` to `kibana-no-security`.
54+
1. In `docker-compose.yml`, change `amazon/opendistro-for-elasticsearch-kibana:0.8.0` to `kibana-no-security`.
5555
1. Change `ELASTICSEARCH_URL` (`docker-compose.yml`) or `elasticsearch.url` (your custom `kibana.yml`) to `http://` rather than `https://`.
5656
1. Remove all `opendistro_security` lines from `kibana.yml`.
5757
1. `docker-compose up`.

index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ Docker
4949
{: .label .label-green }
5050

5151
1. Install and start [Docker Desktop](https://www.docker.com/products/docker-desktop).
52-
1. `docker pull amazon/opendistro-for-elasticsearch:0.7.1`
53-
1. `docker pull amazon/opendistro-for-elasticsearch-kibana:0.7.1`
54-
1. `docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:0.7.1`
52+
1. `docker pull amazon/opendistro-for-elasticsearch:0.8.0`
53+
1. `docker pull amazon/opendistro-for-elasticsearch-kibana:0.8.0`
54+
1. `docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:0.8.0`
5555
1. In a new terminal session, run:
5656

5757
`curl -XGET --insecure https://localhost:9200 -u admin:admin`
@@ -65,6 +65,7 @@ To learn more, see [Install](docs/install/).
6565

6666
Open Distro for Elasticsearch version | Release highlights | Elasticsearch version
6767
:--- | :--- | :---
68+
0.8.0 | Bumps Elasticsearch version. | 6.6.2
6869
0.7.1 | Fixes Kibana multitenancy. | 6.5.4
6970
0.7.0 | Initial release. | 6.5.4
7071

0 commit comments

Comments
 (0)