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

Commit 2372fbc

Browse files
authored
Merge pull request #35 from opendistro/0.7.1
Preparing for 0.7.1
2 parents da9fdd7 + 50797e9 commit 2372fbc

File tree

5 files changed

+35
-18
lines changed

5 files changed

+35
-18
lines changed

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.0
19+
image: amazon/opendistro-for-elasticsearch:0.7.1
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.0
45+
image: amazon/opendistro-for-elasticsearch:0.7.1
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.0
69+
image: amazon/opendistro-for-elasticsearch-kibana:0.7.1
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.0
14-
docker pull amazon/opendistro-for-elasticsearch-kibana:0.7.0
13+
docker pull amazon/opendistro-for-elasticsearch:0.7.1
14+
docker pull amazon/opendistro-for-elasticsearch-kibana:0.7.1
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.0
34+
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:0.7.1
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.0
87+
image: amazon/opendistro-for-elasticsearch:0.7.1
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.0
105+
image: amazon/opendistro-for-elasticsearch:0.7.1
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.0
121+
image: amazon/opendistro-for-elasticsearch-kibana:0.7.1
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.0
153+
amazon/opendistro-for-elasticsearch:0.7.1
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.0
209+
FROM amazon/opendistro-for-elasticsearch:0.7.1
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.0
223+
FROM amazon/opendistro-for-elasticsearch:0.7.1
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.0`.
18+
1. Run `docker pull amazon/opendistro-for-elasticsearch-kibana:0.7.1`.
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.0
44+
FROM amazon/opendistro-for-elasticsearch-kibana:0.7.1
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.0` to `kibana-no-security`.
54+
1. In `docker-compose.yml`, change `amazon/opendistro-for-elasticsearch-kibana:0.7.1` 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: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,33 @@ 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.0`
53-
1. `docker pull amazon/opendistro-for-elasticsearch-kibana:0.7.0`
54-
1. `docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:0.7.0`
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`
5555
1. In a new terminal session, run:
5656

5757
`curl -XGET --insecure https://localhost:9200 -u admin:admin`
5858

5959
To learn more, see [Install](docs/install/).
6060

6161

62+
---
63+
64+
## Version history
65+
66+
Open Distro for Elasticsearch version | Release highlights | Elasticsearch version
67+
:--- | :--- | :---
68+
0.7.1 | Fixes Kibana multitenancy. | 6.5.4
69+
0.7.0 | Initial release. | 6.5.4
70+
71+
For detailed release notes, see these GitHub repositories:
72+
73+
- [Security](https://github.com/opendistro-for-elasticsearch/security/releases)
74+
- [Alerting](https://github.com/opendistro-for-elasticsearch/alerting/releases)
75+
- [SQL](https://github.com/opendistro-for-elasticsearch/sql/releases)
76+
- [Performance Analyzer](https://github.com/opendistro-for-elasticsearch/performance-analyzer/releases)
77+
78+
6279
---
6380

6481
## About Open Distro for Elasticsearch

0 commit comments

Comments
 (0)