Skip to content

Commit 004ed48

Browse files
committedApr 7, 2025·
local elasticstack: bumps docker and k8s from 8.17.2 -> 8.17.4
Signed-off-by: Adrian Cole <[email protected]>
1 parent 99a8396 commit 004ed48

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎docker/docker-compose-elastic.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: elastic-stack
22

33
services:
44
elasticsearch:
5-
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
5+
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
66
container_name: elasticsearch
77
ports:
88
- 9200:9200
@@ -38,7 +38,7 @@ services:
3838
depends_on:
3939
elasticsearch:
4040
condition: service_healthy
41-
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
41+
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
4242
container_name: elasticsearch_settings
4343
restart: 'no'
4444
# gen-ai assistants in kibana save state in a way that requires system
@@ -53,7 +53,7 @@ services:
5353
'
5454
5555
kibana:
56-
image: docker.elastic.co/kibana/kibana:8.17.2
56+
image: docker.elastic.co/kibana/kibana:8.17.4
5757
container_name: kibana
5858
depends_on:
5959
elasticsearch_settings:
@@ -77,7 +77,7 @@ services:
7777
interval: 1s
7878

7979
apm-server:
80-
image: docker.elastic.co/apm/apm-server:8.17.2
80+
image: docker.elastic.co/apm/apm-server:8.17.4
8181
container_name: apm-server
8282
depends_on:
8383
elasticsearch:

‎k8s/k8s-manifest-elastic.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
spec:
3434
containers:
3535
- name: elasticsearch
36-
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
36+
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
3737
ports:
3838
- containerPort: 9200
3939
env:
@@ -102,7 +102,7 @@ spec:
102102
# gen-ai assistants in kibana save state in a way that requires system
103103
# access, so set kibana_system's password to a known value.
104104
- name: setup-kibana-system-user
105-
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
105+
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
106106
command:
107107
- bash
108108
- -c
@@ -114,7 +114,7 @@ spec:
114114
-H "Content-Type: application/json" | grep -q "^{}"; do sleep 5; done;
115115
containers:
116116
- name: kibana
117-
image: docker.elastic.co/kibana/kibana:8.17.2
117+
image: docker.elastic.co/kibana/kibana:8.17.4
118118
ports:
119119
- containerPort: 5601
120120
env:
@@ -172,7 +172,7 @@ spec:
172172
spec:
173173
initContainers:
174174
- name: await-kibana
175-
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
175+
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
176176
command:
177177
- bash
178178
- -xc
@@ -181,7 +181,7 @@ spec:
181181
until curl --max-time 1 -s http://kibana.default.svc:5601/api/status | grep -q 'available'; do sleep 1; done;
182182
containers:
183183
- name: apm-server
184-
image: docker.elastic.co/apm/apm-server:8.17.2
184+
image: docker.elastic.co/apm/apm-server:8.17.4
185185
command:
186186
- apm-server
187187
- -E

0 commit comments

Comments
 (0)
Please sign in to comment.