File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
server.name : kibana
2
2
server.host : " 0.0.0.0"
3
3
server.ssl.enabled : false
4
- elasticsearch.hosts : [ "http://elasticsearch:9200" ]
4
+ elasticsearch.hosts : ["http://elasticsearch:9200"]
5
5
elasticsearch.serviceAccountToken : " ${KIBANA_TOKEN}"
6
6
7
-
8
7
xpack.securitySolution.packagerTaskInterval : 1s
9
8
xpack.fleet.agents.enabled : true
10
9
xpack.fleet.agents.fleet_server.hosts : ["https://fleet-server:8220"]
11
- xpack.fleet.agents.elasticsearch.hosts : ["http://elasticsearch:9200"]
12
10
xpack.fleet.packages :
13
11
- name : elastic_agent
14
12
version : latest
@@ -40,6 +38,6 @@ xpack.fleet.outputs:
40
38
- id : fleet-default-output
41
39
name : default
42
40
type : elasticsearch
43
- hosts : [ http://elasticsearch:9200 ]
41
+ hosts : [http://elasticsearch:9200]
44
42
is_default : true
45
43
is_default_monitoring : true
Original file line number Diff line number Diff line change @@ -6,8 +6,16 @@ host="$1"
6
6
shift
7
7
cmd=" $@ "
8
8
9
+ REPO_ROOT=$( cd $( dirname $( readlink -f " $0 " ) ) /../.. && pwd)
10
+
11
+
9
12
10
13
until $( curl --output /dev/null --silent --head --fail " ${host} /api/status" ) ; do
14
+ if [[ ! $( docker compose -f $REPO_ROOT /dev-tools/e2e/docker-compose.yml --env-file $REPO_ROOT /dev-tools/integration/.env ps --filter status=running -q kibana 2> /dev/null) ]]; then
15
+ echo " Kibana container is not running"
16
+ docker-compose -f $REPO_ROOT /dev-tools/e2e/docker-compose.yml --env-file $REPO_ROOT /dev-tools/integration/.env logs kibana
17
+ exit 1
18
+ fi
11
19
printf ' .'
12
20
sleep 1
13
21
done
Original file line number Diff line number Diff line change 1
- ELASTICSEARCH_VERSION = 8.11 .0-6faed5c7 -SNAPSHOT
1
+ ELASTICSEARCH_VERSION = 8.12 .0-31787d8c -SNAPSHOT
2
2
ELASTICSEARCH_USERNAME = elastic
3
3
ELASTICSEARCH_PASSWORD = changeme
4
4
TEST_ELASTICSEARCH_HOSTS = localhost:9200
You can’t perform that action at this time.
0 commit comments