Skip to content
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

chore: update elastic stack release version 8.4.1 8.4.1 #1270

Merged
merged 1 commit into from
Sep 5, 2022
Merged
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
2 changes: 1 addition & 1 deletion .ci/scripts/load-testing.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

STACK_VERSION=${1:-8.3.3}
STACK_VERSION=${1:-8.4.1}
USER_ID="$(id -u):$(id -g)"
NODEJS_VERSION=$(cat ./dev-utils/.node-version)

Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/pull_and_build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
export NODEJS_VERSION=$(cat ./dev-utils/.node-version)
export STACK_VERSION=${STACK_VERSION:-8.3.3}
export STACK_VERSION=${STACK_VERSION:-8.4.1}

STACK_VERSION=${STACK_VERSION} \
docker-compose -f ./dev-utils/docker-compose.yml --log-level INFO pull --quiet --ignore-pull-failures
Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -xeo pipefail
STACK_VERSION=${STACK_VERSION:-8.3.3}
STACK_VERSION=${STACK_VERSION:-8.4.1}

pip install docker-compose>=1.25.4

Expand Down
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pipeline {
booleanParam(name: 'saucelab_test', defaultValue: "true", description: "Enable run a Sauce lab test")
booleanParam(name: 'bench_ci', defaultValue: true, description: 'Enable benchmarks')
booleanParam(name: 'release', defaultValue: false, description: 'Release. If so, all the other parameters will be ignored when releasing from main.')
string(name: 'stack_version', defaultValue: '8.3.3', description: "What's the Stack Version to be used for the load testing?")
string(name: 'stack_version', defaultValue: '8.4.1', description: "What's the Stack Version to be used for the load testing?")
}
stages {
stage('Initializing'){
Expand Down Expand Up @@ -124,7 +124,7 @@ pipeline {
// The below line is part of the bump release automation
// if you change anything please modifies the file
// .ci/bump-stack-release-version.sh
values '8.0.0-SNAPSHOT', '8.3.3'
values '8.0.0-SNAPSHOT', '8.4.1'
}
axis {
name 'SCOPE'
Expand Down
6 changes: 3 additions & 3 deletions dev-utils/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2.1"
services:
elasticsearch:
container_name: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION:-8.3.3}
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION:-8.4.1}
environment:
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
Expand Down Expand Up @@ -48,7 +48,7 @@ services:

fleet-server:
container_name: apm-server
image: docker.elastic.co/beats/elastic-agent:${STACK_VERSION:-8.3.3}
image: docker.elastic.co/beats/elastic-agent:${STACK_VERSION:-8.4.1}
entrypoint: "/bin/bash"
command:
- "-l"
Expand Down Expand Up @@ -83,7 +83,7 @@ services:

kibana:
container_name: kibana
image: docker.elastic.co/kibana/kibana:${STACK_VERSION:-8.3.3}
image: docker.elastic.co/kibana/kibana:${STACK_VERSION:-8.4.1}
environment:
ELASTICSEARCH_HOSTS: http://elasticsearch:9200
ELASTICSEARCH_USERNAME: "${KIBANA_ES_USER:-kibana_system_user}"
Expand Down