Skip to content

Commit

Permalink
update 7.x test images to 7.7.0 (#16699)
Browse files Browse the repository at this point in the history
* Regenerate expected files after changes in date parsing (#16139)

Elasticsearch has modified the behaviour on date parsing when the date
doesn't include timezone data. Regenerate a couple of golden files that
are affected by this change.

(cherry picked from commit e61c4c4)

* update 7.x tests images to 7.7.0

Co-authored-by: Jaime Soriano Pastor <jaime.soriano@elastic.co>
  • Loading branch information
graphaelli and jsoriano committed Mar 4, 2020
1 parent 13e3c03 commit f1f2c07
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"@timestamp": "2019-06-14T08:40:20.912-02:00",
"@timestamp": "2019-06-14T10:40:20.912-02:00",
"event.dataset": "system.auth",
"event.module": "system",
"event.timezone": "-02:00",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"service.type": "system"
},
{
"@timestamp": "2019-06-14T08:40:20.912-02:00",
"@timestamp": "2019-06-14T10:40:20.912-02:00",
"event.dataset": "system.syslog",
"event.module": "system",
"event.timezone": "-02:00",
Expand Down
6 changes: 3 additions & 3 deletions testing/environments/snapshot-oss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version: '2.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.6.0-SNAPSHOT
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.7.0-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:7.6.0-SNAPSHOT
image: docker.elastic.co/logstash/logstash-oss:7.7.0-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:7.6.0-SNAPSHOT
image: docker.elastic.co/kibana/kibana-oss:7.7.0-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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version: '2.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.6.0-SNAPSHOT
image: docker.elastic.co/elasticsearch/elasticsearch:7.7.0-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:7.6.0-SNAPSHOT
image: docker.elastic.co/logstash/logstash:7.7.0-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:7.6.0-SNAPSHOT
image: docker.elastic.co/kibana/kibana:7.7.0-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 f1f2c07

Please sign in to comment.