File tree Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 1
1
version : ' 2.3'
2
2
services :
3
3
elasticsearch :
4
- image : docker.elastic.co/elasticsearch/elasticsearch:8.5.0
4
+ image : docker.elastic.co/elasticsearch/elasticsearch:8.14.1
5
5
environment :
6
6
cluster.name : test
7
7
discovery.type : single-node
8
8
ELASTIC_PASSWORD : changeme
9
9
xpack.security.enabled : " true"
10
+ xpack.security.http.ssl.enabled : false
11
+ xpack.license.self_generated.type : trial
10
12
ports :
11
13
- " 9200:9200/tcp"
14
+ set-kibana-password :
15
+ image : docker.elastic.co/kibana/kibana:8.14.1
16
+ restart : on-failure
17
+ links :
18
+ - elasticsearch
19
+ # From https://www.elastic.co/guide/en/elasticsearch/reference/current/run-elasticsearch-locally.html
20
+ command : |
21
+ curl -u "elastic:changeme" "http://elasticsearch:9200/_security/user/kibana_system/_password" -d '{"password":"changeme"}' -H 'Content-Type: application/json'
22
+ depends_on :
23
+ elasticsearch :
24
+ condition : service_started
12
25
kibana :
13
- image : docker.elastic.co/kibana/kibana:8.5.0
26
+ image : docker.elastic.co/kibana/kibana:8.14.1
14
27
environment :
15
28
ELASTICSEARCH_HOSTS : http://es:9200
16
29
ELASTICSEARCH_USERNAME : kibana_system
17
30
ELASTICSEARCH_PASSWORD : changeme
31
+ xpack.license.self_generated.type : trial
18
32
links :
19
33
- elasticsearch:es
20
34
ports :
21
- - " 5601:5601/tcp"
35
+ - " 5601:5601/tcp"
36
+ depends_on :
37
+ set-kibana-password :
38
+ condition : service_completed_successfully
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ func (s *KBAPITestSuite) TestKibanaSpaces() {
42
42
Objects : []KibanaSpaceObjectParameter {
43
43
{
44
44
Type : "config" ,
45
- ID : "8.5.0 " ,
45
+ ID : "8.14.1 " ,
46
46
},
47
47
},
48
48
}
You can’t perform that action at this time.
0 commit comments