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

Commit

Permalink
Open Distro 1.1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
allenyin96 committed Jul 17, 2019
1 parent 01b4039 commit a374eb5
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions elasticsearch/docker/docker-compose.yml
Expand Up @@ -22,7 +22,7 @@ version: '2.1'
services:
elasticsearch1:
container_name: elasticsearch1
image: amazon/opendistro-for-elasticsearch:1.0.0
image: amazon/opendistro-for-elasticsearch:1.1.0
mem_limit: 4g
networks:
esnet:
Expand All @@ -43,7 +43,7 @@ services:
container_name: elasticsearch2
environment:
- node.master=false
image: amazon/opendistro-for-elasticsearch:1.0.0
image: amazon/opendistro-for-elasticsearch:1.1.0
mem_limit: 4g
networks:
- esnet
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/docker/tests/test_labels.py
Expand Up @@ -23,5 +23,5 @@ def test_labels(elasticsearch):
assert labels['org.label-schema.schema-version'] == '1.0'
assert labels['org.label-schema.url'] == 'https://opendistro.github.io'
assert labels['org.label-schema.vcs-url'] == 'https://github.com/opendistro-for-elasticsearch/opendistro-build'
assert labels['org.label-schema.version'] == '1.0.0'
assert labels['org.label-schema.version'] == '1.1.0'
assert labels['org.label-schema.license'] == 'Apache-2.0'
8 changes: 4 additions & 4 deletions elasticsearch/linux_distributions/build.gradle
Expand Up @@ -27,10 +27,10 @@ plugins {

ext {
// Remember to increment both of these when rolling out a new version
es_version = System.getProperty("es.version", "7.0.1")
opendistroVersion = "1.0.0"
baseODPluginsVersion = "1.0.0"
nextODPluginsVersion = "1.0.1"
es_version = System.getProperty("es.version", "7.1.1")
opendistroVersion = "1.1.0"
baseODPluginsVersion = "1.1.0"
nextODPluginsVersion = "1.1.1"

isSnapshot = "true" == System.getProperty("build.snapshot", "true")
}
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/version.json
@@ -1 +1 @@
{"esversion": "7.0.1", "odVersion": "1.0.0"}
{"esversion": "7.1.1", "odVersion": "1.1.0"}
4 changes: 2 additions & 2 deletions kibana/docker/docker-compose.yml
Expand Up @@ -19,7 +19,7 @@ version: '3'
services:
kibana:
container_name: opendistroforelasticsearch-kibana-test
image: amazon/opendistro-for-elasticsearch-kibana:1.0.0
image: amazon/opendistro-for-elasticsearch-kibana:1.1.0
ports:
- 5601:5601
networks: [opendistroforelasticsearch]
Expand All @@ -36,7 +36,7 @@ services:

elasticsearch:
container_name: opendistroforelasticsearch-test
image: amazon/opendistro-for-elasticsearch:1.0.0
image: amazon/opendistro-for-elasticsearch:1.1.0
networks: [opendistroforelasticsearch]
environment:
- discovery.type=single-node
Expand Down
2 changes: 1 addition & 1 deletion kibana/docker/tests/test_labels.py
Expand Up @@ -24,4 +24,4 @@ def test_labels(kibana):
assert labels['org.label-schema.url'] == 'https://opendistro.github.io'
assert labels['org.label-schema.vcs-url'] == 'https://github.com/opendistro-for-elasticsearch/opendistro-build'
assert labels['org.label-schema.vendor'] == 'Amazon'
assert labels['org.label-schema.version'] == '1.0.0'
assert labels['org.label-schema.version'] == '1.1.0'
2 changes: 1 addition & 1 deletion kibana/version.json
@@ -1 +1 @@
{"esversion": "7.0.1", "odVersion": "1.0.0"}
{"esversion": "7.1.1", "odVersion": "1.1.0"}

0 comments on commit a374eb5

Please sign in to comment.