Skip to content

Commit 7dd5d83

Browse files
authored
chore: 8.15.0 is here - lets try it out (#708)
1 parent 261d77e commit 7dd5d83

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
- '8.12.2'
104104
- '8.13.4'
105105
- '8.14.3'
106+
- '8.15.0'
106107
steps:
107108
- uses: actions/checkout@v4
108109
- uses: actions/setup-go@v5

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ SWAGGER_VERSION ?= 8.7
1616

1717
GOVERSION ?= $(shell grep -e '^go' go.mod | cut -f 2 -d ' ')
1818

19-
STACK_VERSION ?= 8.13.4
19+
STACK_VERSION ?= 8.15.0
2020

2121
ELASTICSEARCH_NAME ?= terraform-elasticstack-es
2222
ELASTICSEARCH_ENDPOINTS ?= http://$(ELASTICSEARCH_NAME):9200
2323
ELASTICSEARCH_USERNAME ?= elastic
2424
ELASTICSEARCH_PASSWORD ?= password
2525
ELASTICSEARCH_NETWORK ?= elasticstack-network
26-
ELASTICSEARCH_MEM ?= 1024m
26+
ELASTICSEARCH_MEM ?= 2048m
2727

2828
KIBANA_NAME ?= terraform-elasticstack-kb
2929
KIBANA_ENDPOINT ?= http://$(KIBANA_NAME):5601

libs/go-kibana-rest/docker-compose.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
version: '2.3'
21
services:
32
elasticsearch:
4-
image: docker.elastic.co/elasticsearch/elasticsearch:8.14.3
3+
image: docker.elastic.co/elasticsearch/elasticsearch:8.15.0
54
environment:
65
cluster.name: test
76
discovery.type: single-node
@@ -12,7 +11,7 @@ services:
1211
ports:
1312
- "9200:9200/tcp"
1413
set-kibana-password:
15-
image: docker.elastic.co/kibana/kibana:8.14.3
14+
image: docker.elastic.co/kibana/kibana:8.15.0
1615
restart: on-failure
1716
links:
1817
- elasticsearch
@@ -23,7 +22,7 @@ services:
2322
elasticsearch:
2423
condition: service_started
2524
kibana:
26-
image: docker.elastic.co/kibana/kibana:8.14.3
25+
image: docker.elastic.co/kibana/kibana:8.15.0
2726
environment:
2827
ELASTICSEARCH_HOSTS: http://es:9200
2928
ELASTICSEARCH_USERNAME: kibana_system

libs/go-kibana-rest/kbapi/api.kibana_spaces_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (s *KBAPITestSuite) TestKibanaSpaces() {
4242
Objects: []KibanaSpaceObjectParameter{
4343
{
4444
Type: "config",
45-
ID: "8.14.3",
45+
ID: "8.15.0",
4646
},
4747
},
4848
}

0 commit comments

Comments
 (0)