Skip to content

Commit 9644925

Browse files
[updatecli] Bump elastic stack version to 8.19.6 (#1650)
1 parent 2849b3f commit 9644925

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.ci/scripts/load-testing.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
STACK_VERSION=${1:-8.19.5}
3+
STACK_VERSION=${1:-8.19.6}
44
USER_ID="$(id -u):$(id -g)"
55
# The migration of this to Node.js 18 will wait. To update playwright (and browsers)
66
# to make it work in Node.js 18 and latest version in ubuntu (or another OS)

.ci/scripts/pull_and_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
export NODEJS_VERSION=$(cat .nvmrc)
3-
export STACK_VERSION=${STACK_VERSION:-8.19.5}
3+
export STACK_VERSION=${STACK_VERSION:-8.19.6}
44

55
STACK_VERSION=${STACK_VERSION} \
66
docker --log-level INFO compose -f ./dev-utils/docker-compose.yml pull --quiet --ignore-pull-failures

.ci/scripts/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -xo pipefail
33

4-
STACK_VERSION=${STACK_VERSION:-"8.19.5"}
4+
STACK_VERSION=${STACK_VERSION:-"8.19.6"}
55
APM_SERVER_PORT=${APM_SERVER_PORT:-"8200"}
66
APM_SERVER_URL=${APM_SERVER_URL:-"http://apm-server:8200"}
77
KIBANA_URL=${KIBANA_URL:-"http://kibana:5601"}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
matrix:
6767
stack-version:
6868
- '8.2.0-SNAPSHOT'
69-
- '8.19.5'
69+
- '8.19.6'
7070
scope:
7171
- '@elastic/apm-rum'
7272
- '@elastic/apm-rum-core'
@@ -118,4 +118,4 @@ jobs:
118118
uses: ./.github/workflows/run-test
119119
with:
120120
goal: 'coverage'
121-
stack-version: '8.19.5'
121+
stack-version: '8.19.6'

.github/workflows/microbenchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
inputs:
66
stack_version:
77
description: 'Stack Version'
8-
default: '8.19.5'
8+
default: '8.19.6'
99
required: false
1010
push:
1111
branches:
@@ -26,7 +26,7 @@ jobs:
2626
- name: Run buildkite pipeline
2727
uses: elastic/oblt-actions/buildkite/run@v1
2828
env:
29-
STACK_VERSION: ${{ inputs.stack_version || '8.19.5' }}
29+
STACK_VERSION: ${{ inputs.stack_version || '8.19.6' }}
3030
with:
3131
token: ${{ secrets.BUILDKITE_TOKEN }}
3232
pipeline: apm-agent-microbenchmark

dev-utils/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
elasticsearch:
33
container_name: elasticsearch
4-
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION:-8.19.5}
4+
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION:-8.19.6}
55
environment:
66
- cluster.name=docker-cluster
77
- bootstrap.memory_lock=true
@@ -46,7 +46,7 @@ services:
4646

4747
fleet-server:
4848
container_name: apm-server
49-
image: docker.elastic.co/beats/elastic-agent:${STACK_VERSION:-8.19.5}
49+
image: docker.elastic.co/beats/elastic-agent:${STACK_VERSION:-8.19.6}
5050
entrypoint: "/bin/bash"
5151
command:
5252
- "-l"
@@ -81,7 +81,7 @@ services:
8181

8282
kibana:
8383
container_name: kibana
84-
image: docker.elastic.co/kibana/kibana:${STACK_VERSION:-8.19.5}
84+
image: docker.elastic.co/kibana/kibana:${STACK_VERSION:-8.19.6}
8585
environment:
8686
ELASTICSEARCH_HOSTS: http://elasticsearch:9200
8787
ELASTICSEARCH_USERNAME: "${KIBANA_ES_USER:-kibana_system_user}"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ELASTICSEARCH_PORT=9201 STACK_VERSION=8.19.5 APM_SERVER_PORT=8001 docker compose up apm-server kibana
1+
ELASTICSEARCH_PORT=9201 STACK_VERSION=8.19.6 APM_SERVER_PORT=8001 docker compose up apm-server kibana
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#docker run -p 127.0.0.1:8200:8201 elastic/apm-server:6.2.4 /bin/sh -c "apm-server -e -E output.elasticsearch.password=$(ELASTICSEARCH_PASSWORD) -E output.elasticsearch.username=$(ELASTICSEARCH_USERNAME) -E output.elasticsearch.hosts=['$(ELASTICSEARCH_SERVICE_HOST):$(ELASTICSEARCH_SERVICE_PORT)'] -E apm-server.expvar.enabled=true -E apm-server.frontend.enabled=true -E apm-server.frontend.rate_limit=100000 -E apm-server.host=0.0.0.0:8200 -E apm-server.read_timeout=1m -E apm-server.shutdown_timeout=2m -E apm-server.write_timeout=1m"
2-
STACK_VERSION=8.19.5 APM_SERVER_PORT=8001 docker compose up apm-server
3-
#STACK_VERSION=8.19.5 docker compose -f ./test/docker compose.yml start apm-server
2+
STACK_VERSION=8.19.6 APM_SERVER_PORT=8001 docker compose up apm-server
3+
#STACK_VERSION=8.19.6 docker compose -f ./test/docker compose.yml start apm-server

0 commit comments

Comments
 (0)