Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 456b349

Browse files
author
apmmachine
committed
bump stack version 8.1.0-befff95a
1 parent e438b87 commit 456b349

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.ci/Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ pipeline {
4747
booleanParam(name: "notifyOnGreenBuilds", defaultValue: false, description: "If it's needed to notify to Slack with green builds.")
4848
string(name: 'SLACK_CHANNEL', defaultValue: 'observablt-bots', description: 'The Slack channel(s) where errors will be posted. For multiple channels, use a comma-separated list of channels')
4949
string(name: 'ELASTIC_AGENT_DOWNLOAD_URL', defaultValue: '', description: 'If present, it will override the download URL for the Elastic agent artifact. (I.e. https://snapshots.elastic.co/8.0.0-59098054/downloads/beats/elastic-agent/elastic-agent-8.0.0-SNAPSHOT-linux-x86_64.tar.gz')
50-
string(name: 'BEAT_VERSION', defaultValue: '8.1.0-60bffc32-SNAPSHOT', description: 'SemVer version of the Beat to be used for the tests. You can use here the tag of your PR to test your changes')
50+
string(name: 'BEAT_VERSION', defaultValue: '8.1.0-befff95a-SNAPSHOT', description: 'SemVer version of the Beat to be used for the tests. You can use here the tag of your PR to test your changes')
5151
string(name: 'ELASTIC_AGENT_STALE_VERSION', defaultValue: '7.15-SNAPSHOT', description: 'SemVer version of the stale stand-alone elastic-agent to be used for Fleet upgrade tests.')
5252
choice(name: 'LOG_LEVEL', choices: ['DEBUG', 'TRACE', 'INFO'], description: 'Log level to be used')
5353
choice(name: 'TIMEOUT_FACTOR', choices: ['5', '3', '7', '11'], description: 'Max number of minutes for timeout backoff strategies')
5454
string(name: 'KIBANA_VERSION', defaultValue: '', description: 'Docker tag of the kibana to be used for the tests. It will refer to an image related to a Kibana PR, under the Observability-CI namespace')
55-
string(name: 'STACK_VERSION', defaultValue: '8.1.0-60bffc32-SNAPSHOT', description: 'SemVer version of the stack to be used for the tests.')
55+
string(name: 'STACK_VERSION', defaultValue: '8.1.0-befff95a-SNAPSHOT', description: 'SemVer version of the stack to be used for the tests.')
5656
string(name: 'HELM_CHART_VERSION', defaultValue: '7.11.2', description: 'SemVer version of Helm chart to be used.')
5757
string(name: 'HELM_VERSION', defaultValue: '3.5.2', description: 'SemVer version of Helm to be used.')
5858
string(name: 'KIND_VERSION', defaultValue: '0.10.0', description: 'SemVer version of Kind to be used.')

.stack-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.1.0-60bffc32-SNAPSHOT
1+
8.1.0-befff95a-SNAPSHOT

cli/config/compose/profiles/fleet/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
- xpack.security.authc.api_key.enabled=true
1717
- ELASTIC_USERNAME=elastic
1818
- ELASTIC_PASSWORD=changeme
19-
image: "docker.elastic.co/elasticsearch/elasticsearch:${stackVersion:-8.1.0-60bffc32-SNAPSHOT}"
19+
image: "docker.elastic.co/elasticsearch/elasticsearch:${stackVersion:-8.1.0-befff95a-SNAPSHOT}"
2020
platform: ${stackPlatform:-linux/amd64}
2121
ports:
2222
- "9200:9200"
@@ -28,14 +28,14 @@ services:
2828
test: "curl -f http://localhost:5601/login | grep kbn-injected-metadata 2>&1 >/dev/null"
2929
retries: 600
3030
interval: 1s
31-
image: "docker.elastic.co/${kibanaDockerNamespace:-kibana}/kibana:${kibanaVersion:-8.1.0-60bffc32-SNAPSHOT}"
31+
image: "docker.elastic.co/${kibanaDockerNamespace:-kibana}/kibana:${kibanaVersion:-8.1.0-befff95a-SNAPSHOT}"
3232
platform: ${stackPlatform:-linux/amd64}
3333
ports:
3434
- "5601:5601"
3535
volumes:
3636
- ./${kibanaProfile:-default}/kibana.config.yml:/usr/share/kibana/config/kibana.yml
3737
fleet-server:
38-
image: "docker.elastic.co/beats/elastic-agent:${stackVersion:-8.1.0-60bffc32-SNAPSHOT}"
38+
image: "docker.elastic.co/beats/elastic-agent:${stackVersion:-8.1.0-befff95a-SNAPSHOT}"
3939
depends_on:
4040
elasticsearch:
4141
condition: service_healthy

cli/config/compose/profiles/metricbeat/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
- xpack.monitoring.collection.enabled=true
1010
- ELASTIC_USERNAME=elastic
1111
- ELASTIC_PASSWORD=changeme
12-
image: "docker.elastic.co/elasticsearch/elasticsearch:${stackVersion:-8.1.0-60bffc32-SNAPSHOT}"
12+
image: "docker.elastic.co/elasticsearch/elasticsearch:${stackVersion:-8.1.0-befff95a-SNAPSHOT}"
1313
platform: ${stackPlatform:-linux/amd64}
1414
ports:
1515
- "9200:9200"

cli/config/kubernetes/base/elasticsearch/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: elasticsearch
19-
image: docker.elastic.co/elasticsearch/elasticsearch:8.1.0-60bffc32-SNAPSHOT
19+
image: docker.elastic.co/elasticsearch/elasticsearch:8.1.0-befff95a-SNAPSHOT
2020
envFrom:
2121
- configMapRef:
2222
name: elasticsearch-config

cli/config/kubernetes/base/fleet-server/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: fleet-server
19-
image: docker.elastic.co/beats/elastic-agent:8.1.0-60bffc32-SNAPSHOT
19+
image: docker.elastic.co/beats/elastic-agent:8.1.0-befff95a-SNAPSHOT
2020
env:
2121
- name: FLEET_SERVER_ENABLE
2222
value: "1"

cli/config/kubernetes/base/kibana/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: kibana
19-
image: docker.elastic.co/kibana/kibana:8.1.0-60bffc32-SNAPSHOT
19+
image: docker.elastic.co/kibana/kibana:8.1.0-befff95a-SNAPSHOT
2020
env:
2121
- name: ELASTICSEARCH_URL
2222
value: http://elasticsearch:9200

internal/common/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const FleetServerAgentServiceName = "fleet-server"
3636
var AgentStaleVersion = "7.15-SNAPSHOT"
3737

3838
// BeatVersionBase is the base version of the Beat to use
39-
var BeatVersionBase = "8.1.0-60bffc32-SNAPSHOT"
39+
var BeatVersionBase = "8.1.0-befff95a-SNAPSHOT"
4040

4141
// BeatVersion is the version of the Beat to use
4242
// It can be overriden by BEAT_VERSION env var

0 commit comments

Comments
 (0)