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

Commit f9a1e4a

Browse files
apmmachineapmmachine
andauthored
bump stack version 8.6.0-da453972 (#3203)
Co-authored-by: apmmachine <infra-root-apmmachine@elastic.co>
1 parent 5663f44 commit f9a1e4a

13 files changed

Lines changed: 16 additions & 16 deletions

File tree

.ci/Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ pipeline {
5555
booleanParam(name: "notifyOnGreenBuilds", defaultValue: false, description: "If it's needed to notify to Slack with green builds.")
5656
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')
5757
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')
58-
string(name: 'ELASTIC_AGENT_VERSION', defaultValue: '8.6.0-3f5f98b7-SNAPSHOT', description: 'SemVer version of the Elastic Agent to be used for the tests. You can use here the tag of your PR to test your changes')
59-
string(name: 'BEAT_VERSION', defaultValue: '8.6.0-3f5f98b7-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')
58+
string(name: 'ELASTIC_AGENT_VERSION', defaultValue: '8.6.0-da453972-SNAPSHOT', description: 'SemVer version of the Elastic Agent to be used for the tests. You can use here the tag of your PR to test your changes')
59+
string(name: 'BEAT_VERSION', defaultValue: '8.6.0-da453972-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')
6060
choice(name: 'LOG_LEVEL', choices: ['TRACE', 'DEBUG', 'INFO'], description: 'Log level to be used')
6161
choice(name: 'TIMEOUT_FACTOR', choices: ['5', '3', '7', '11'], description: 'Max number of minutes for timeout backoff strategies')
6262
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')
63-
string(name: 'STACK_VERSION', defaultValue: '8.6.0-3f5f98b7-SNAPSHOT', description: 'SemVer version of the stack to be used for the tests.')
63+
string(name: 'STACK_VERSION', defaultValue: '8.6.0-da453972-SNAPSHOT', description: 'SemVer version of the stack to be used for the tests.')
6464
string(name: 'HELM_CHART_VERSION', defaultValue: '7.17.3', description: 'SemVer version of Helm chart to be used.')
6565
string(name: 'HELM_VERSION', defaultValue: '3.9.0', description: 'SemVer version of Helm to be used.')
6666
string(name: 'KIND_VERSION', defaultValue: '0.14.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.6.0-3f5f98b7-SNAPSHOT
1+
8.6.0-da453972-SNAPSHOT

internal/common/defaults.go

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

3838
// BeatVersionBase is the base version of the Beat to use
39-
var BeatVersionBase = "8.6.0-3f5f98b7-SNAPSHOT"
39+
var BeatVersionBase = "8.6.0-da453972-SNAPSHOT"
4040

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
- xpack.security.authc.token.timeout=60m
1919
- ELASTIC_USERNAME=admin
2020
- ELASTIC_PASSWORD=changeme
21-
image: "docker.elastic.co/elasticsearch/elasticsearch:${stackVersion:-8.6.0-3f5f98b7-SNAPSHOT}"
21+
image: "docker.elastic.co/elasticsearch/elasticsearch:${stackVersion:-8.6.0-da453972-SNAPSHOT}"
2222
platform: ${stackPlatform:-linux/amd64}
2323
ports:
2424
- "9200:9200"
@@ -34,7 +34,7 @@ services:
3434
test: "curl -f http://localhost:5601/login | grep kbn-injected-metadata 2>&1 >/dev/null"
3535
retries: 600
3636
interval: 1s
37-
image: "docker.elastic.co/${kibanaDockerNamespace:-kibana}/kibana:${kibanaVersion:-8.6.0-3f5f98b7-SNAPSHOT}"
37+
image: "docker.elastic.co/${kibanaDockerNamespace:-kibana}/kibana:${kibanaVersion:-8.6.0-da453972-SNAPSHOT}"
3838
platform: ${stackPlatform:-linux/amd64}
3939
ports:
4040
- "5601:5601"

internal/config/compose/services/elastic-agent/cloud/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2.4'
22
services:
33
elastic-agent:
4-
image: "docker.elastic.co/${elasticAgentDockerNamespace:-beats}/elastic-agent${elasticAgentDockerImageSuffix}:${elasticAgentTag:-8.6.0-3f5f98b7-SNAPSHOT}"
4+
image: "docker.elastic.co/${elasticAgentDockerNamespace:-beats}/elastic-agent${elasticAgentDockerImageSuffix}:${elasticAgentTag:-8.6.0-da453972-SNAPSHOT}"
55
depends_on:
66
elasticsearch:
77
condition: service_healthy

internal/config/compose/services/elastic-agent/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2.4'
22
services:
33
elastic-agent:
4-
image: "docker.elastic.co/${elasticAgentDockerNamespace:-beats}/elastic-agent${elasticAgentDockerImageSuffix}:${elasticAgentTag:-8.6.0-3f5f98b7-SNAPSHOT}"
4+
image: "docker.elastic.co/${elasticAgentDockerNamespace:-beats}/elastic-agent${elasticAgentDockerImageSuffix}:${elasticAgentTag:-8.6.0-da453972-SNAPSHOT}"
55
depends_on:
66
elasticsearch:
77
condition: service_healthy

internal/config/compose/services/elastic-agent/fleet-server/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2.4'
22
services:
33
fleet-server:
4-
image: "docker.elastic.co/${elasticAgentDockerNamespace:-beats}/elastic-agent${elasticAgentDockerImageSuffix}:${elasticAgentTag:-8.6.0-3f5f98b7-SNAPSHOT}"
4+
image: "docker.elastic.co/${elasticAgentDockerNamespace:-beats}/elastic-agent${elasticAgentDockerImageSuffix}:${elasticAgentTag:-8.6.0-da453972-SNAPSHOT}"
55
depends_on:
66
elasticsearch:
77
condition: service_healthy

internal/config/compose/services/elasticsearch/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/observability-ci/elasticsearch:${elasticsearchTag:-8.6.0-3f5f98b7-SNAPSHOT}"
12+
image: "docker.elastic.co/observability-ci/elasticsearch:${elasticsearchTag:-8.6.0-da453972-SNAPSHOT}"
1313
platform: ${elasticsearchPlatform:-linux/amd64}
1414
ports:
1515
- "9200:9200"

internal/config/compose/services/kibana/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ services:
99
test: "curl -f http://localhost:5601/login | grep kbn-injected-metadata 2>&1 >/dev/null"
1010
retries: 600
1111
interval: 1s
12-
image: "docker.elastic.co/kibana/kibana:${kibanaTag:-8.6.0-3f5f98b7-SNAPSHOT}"
12+
image: "docker.elastic.co/kibana/kibana:${kibanaTag:-8.6.0-da453972-SNAPSHOT}"
1313
ports:
1414
- "5601:5601"

internal/config/compose/services/metricbeat/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
]
1515
environment:
1616
- BEAT_STRICT_PERMS=${beatStricPerms:-false}
17-
image: "docker.elastic.co/${metricbeatDockerNamespace:-beats}/metricbeat:${metricbeatTag:-8.6.0-3f5f98b7-SNAPSHOT}"
17+
image: "docker.elastic.co/${metricbeatDockerNamespace:-beats}/metricbeat:${metricbeatTag:-8.6.0-da453972-SNAPSHOT}"
1818
labels:
1919
co.elastic.logs/module: "${serviceName}"
2020
platform: ${stackPlatform:-linux/amd64}

0 commit comments

Comments
 (0)