Skip to content

Commit

Permalink
Update testing env 6.8.3 (elastic#13411)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemadden42 committed Aug 29, 2019
1 parent 9be0dc0 commit 24ae043
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions testing/environments/latest.yml
Expand Up @@ -3,7 +3,7 @@
version: '2.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.2.0
image: docker.elastic.co/elasticsearch/elasticsearch:7.3.1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9200"]
retries: 300
Expand All @@ -16,7 +16,7 @@ services:
- "xpack.security.enabled=false"

logstash:
image: docker.elastic.co/logstash/logstash:7.2.0
image: docker.elastic.co/logstash/logstash:7.3.1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9600/_node/stats"]
retries: 300
Expand All @@ -26,7 +26,7 @@ services:
- ./docker/logstash/pki:/etc/pki:ro

kibana:
image: docker.elastic.co/kibana/kibana:7.2.0
image: docker.elastic.co/kibana/kibana:7.3.1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5601"]
retries: 300
Expand Down
6 changes: 3 additions & 3 deletions testing/environments/snapshot-oss.yml
Expand Up @@ -3,7 +3,7 @@
version: '2.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.8.2-SNAPSHOT
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.8.3-SNAPSHOT
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9200"]
retries: 300
Expand All @@ -15,7 +15,7 @@ services:
- "http.host=0.0.0.0"

logstash:
image: docker.elastic.co/logstash/logstash-oss:6.8.2-SNAPSHOT
image: docker.elastic.co/logstash/logstash-oss:6.8.3-SNAPSHOT
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9600/_node/stats"]
retries: 600
Expand All @@ -25,7 +25,7 @@ services:
- ./docker/logstash/pki:/etc/pki:ro

kibana:
image: docker.elastic.co/kibana/kibana-oss:6.8.2-SNAPSHOT
image: docker.elastic.co/kibana/kibana-oss:6.8.3-SNAPSHOT
healthcheck:
test: ["CMD-SHELL", 'python -c ''import urllib, json; response = urllib.urlopen("http://localhost:5601/api/status"); data = json.loads(response.read()); exit(1) if data["status"]["overall"]["state"] != "green" else exit(0);''']
retries: 600
Expand Down
6 changes: 3 additions & 3 deletions testing/environments/snapshot.yml
Expand Up @@ -3,7 +3,7 @@
version: '2.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.8.2-SNAPSHOT
image: docker.elastic.co/elasticsearch/elasticsearch:6.8.3-SNAPSHOT
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9200"]
retries: 300
Expand All @@ -16,7 +16,7 @@ services:
- "xpack.security.enabled=false"

logstash:
image: docker.elastic.co/logstash/logstash:6.8.2-SNAPSHOT
image: docker.elastic.co/logstash/logstash:6.8.3-SNAPSHOT
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9600/_node/stats"]
retries: 600
Expand All @@ -26,7 +26,7 @@ services:
- ./docker/logstash/pki:/etc/pki:ro

kibana:
image: docker.elastic.co/kibana/kibana:6.8.2-SNAPSHOT
image: docker.elastic.co/kibana/kibana:6.8.3-SNAPSHOT
healthcheck:
test: ["CMD-SHELL", 'python -c ''import urllib, json; response = urllib.urlopen("http://localhost:5601/api/status"); data = json.loads(response.read()); exit(1) if data["status"]["overall"]["state"] != "green" else exit(0);''']
retries: 600
Expand Down

0 comments on commit 24ae043

Please sign in to comment.