Skip to content

Commit 62316a3

Browse files
Bump the version on main to 8.15.0 (#4592)
* [Release] update version * Bump version in k8s YAML. * Pin version to 8.14.0 until 8.15.0-SNAPSHOT exists. --------- Co-authored-by: Craig MacKenzie <craig.mackenzie@elastic.co>
1 parent 506b695 commit 62316a3

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.buildkite/scripts/steps/integration_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ MAGE_SUBTARGET="${3:-""}"
1111
# Override the agent package version using a string with format <major>.<minor>.<patch>
1212
# NOTE: use only after version bump when the new version is not yet available, for example:
1313
# OVERRIDE_AGENT_PACKAGE_VERSION="8.10.3" otherwise OVERRIDE_AGENT_PACKAGE_VERSION="".
14-
OVERRIDE_AGENT_PACKAGE_VERSION=""
14+
OVERRIDE_AGENT_PACKAGE_VERSION="8.14.0"
1515

1616
if [[ -n "$OVERRIDE_AGENT_PACKAGE_VERSION" ]]; then
1717
OVERRIDE_TEST_AGENT_VERSION=${OVERRIDE_AGENT_PACKAGE_VERSION}"-SNAPSHOT"

deploy/kubernetes/elastic-agent-managed-kubernetes.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
dnsPolicy: ClusterFirstWithHostNet
3131
containers:
3232
- name: elastic-agent
33-
image: docker.elastic.co/beats/elastic-agent:8.14.0
33+
image: docker.elastic.co/beats/elastic-agent:8.15.0
3434
env:
3535
# Set to 1 for enrollment into Fleet server. If not set, Elastic Agent is run in standalone mode
3636
- name: FLEET_ENROLL

deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -698,13 +698,13 @@ spec:
698698
# - -c
699699
# - >-
700700
# mkdir -p /etc/elastic-agent/inputs.d &&
701-
# wget -O - https://github.com/elastic/elastic-agent/archive/8.14.tar.gz | tar xz -C /etc/elastic-agent/inputs.d --strip=5 "elastic-agent-8.14/deploy/kubernetes/elastic-agent-standalone/templates.d"
701+
# wget -O - https://github.com/elastic/elastic-agent/archive/8.15.tar.gz | tar xz -C /etc/elastic-agent/inputs.d --strip=5 "elastic-agent-8.15/deploy/kubernetes/elastic-agent-standalone/templates.d"
702702
# volumeMounts:
703703
# - name: external-inputs
704704
# mountPath: /etc/elastic-agent/inputs.d
705705
containers:
706706
- name: elastic-agent-standalone
707-
image: docker.elastic.co/beats/elastic-agent:8.14.0
707+
image: docker.elastic.co/beats/elastic-agent:8.15.0
708708
args: ["-c", "/etc/elastic-agent/agent.yml", "-e"]
709709
env:
710710
# The basic authentication username used to connect to Elasticsearch

testing/integration/upgrade_broken_package_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ func TestUpgradeBrokenPackageVersion(t *testing.T) {
3232
Sudo: true, // requires Agent installation
3333
})
3434

35+
t.Skip("Skip until the first 8.15.0-SNAPSHOT is available")
36+
3537
ctx, cancel := testcontext.WithDeadline(t, context.Background(), time.Now().Add(10*time.Minute))
3638
defer cancel()
3739

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
package version
66

7-
const defaultBeatVersion = "8.14.0"
7+
const defaultBeatVersion = "8.15.0"
88
const Agent = defaultBeatVersion

0 commit comments

Comments
 (0)