Skip to content

local elasticstack: bumps docker and k8s from 8.17.2 -> 8.17.4 #442

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker/docker-compose-elastic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: elastic-stack

services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
container_name: elasticsearch
ports:
- 9200:9200
Expand Down Expand Up @@ -38,7 +38,7 @@ services:
depends_on:
elasticsearch:
condition: service_healthy
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
container_name: elasticsearch_settings
restart: 'no'
# gen-ai assistants in kibana save state in a way that requires system
Expand All @@ -53,7 +53,7 @@ services:
'

kibana:
image: docker.elastic.co/kibana/kibana:8.17.2
image: docker.elastic.co/kibana/kibana:8.17.4
container_name: kibana
depends_on:
elasticsearch_settings:
Expand All @@ -77,7 +77,7 @@ services:
interval: 1s

apm-server:
image: docker.elastic.co/apm/apm-server:8.17.2
image: docker.elastic.co/apm/apm-server:8.17.4
container_name: apm-server
depends_on:
elasticsearch:
Expand Down
10 changes: 5 additions & 5 deletions k8s/k8s-manifest-elastic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
spec:
containers:
- name: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
ports:
- containerPort: 9200
env:
Expand Down Expand Up @@ -102,7 +102,7 @@ spec:
# gen-ai assistants in kibana save state in a way that requires system
# access, so set kibana_system's password to a known value.
- name: setup-kibana-system-user
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
command:
- bash
- -c
Expand All @@ -114,7 +114,7 @@ spec:
-H "Content-Type: application/json" | grep -q "^{}"; do sleep 5; done;
containers:
- name: kibana
image: docker.elastic.co/kibana/kibana:8.17.2
image: docker.elastic.co/kibana/kibana:8.17.4
ports:
- containerPort: 5601
env:
Expand Down Expand Up @@ -172,7 +172,7 @@ spec:
spec:
initContainers:
- name: await-kibana
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.2
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.4
command:
- bash
- -xc
Expand All @@ -181,7 +181,7 @@ spec:
until curl --max-time 1 -s http://kibana.default.svc:5601/api/status | grep -q 'available'; do sleep 1; done;
containers:
- name: apm-server
image: docker.elastic.co/apm/apm-server:8.17.2
image: docker.elastic.co/apm/apm-server:8.17.4
command:
- apm-server
- -E
Expand Down
Loading