From 379dfc0203e9f5629740f6ac2bd7bf3f47861d56 Mon Sep 17 00:00:00 2001 From: Elastic Machine Date: Wed, 27 Mar 2024 17:20:05 +0100 Subject: [PATCH] [Release] Update version to 8.13.1 (#4259) * [Release] update version * make check-ci + use 8.13.0 agent the time to get 8.13.1 available * Skip TestUpgradeBrokenPackageVersion until 8.13.1 is available --------- Co-authored-by: Pierre HILBERT --- .buildkite/scripts/steps/integration_tests.sh | 2 +- deploy/kubernetes/elastic-agent-managed-kubernetes.yaml | 2 +- deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml | 2 +- testing/integration/upgrade_broken_package_test.go | 2 ++ version/version.go | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.buildkite/scripts/steps/integration_tests.sh b/.buildkite/scripts/steps/integration_tests.sh index 2a129193267..bc5387cafe1 100755 --- a/.buildkite/scripts/steps/integration_tests.sh +++ b/.buildkite/scripts/steps/integration_tests.sh @@ -11,7 +11,7 @@ MAGE_SUBTARGET="${3:-""}" # Override the agent package version using a string with format .. # NOTE: use only after version bump when the new version is not yet available, for example: # OVERRIDE_AGENT_PACKAGE_VERSION="8.10.3" otherwise OVERRIDE_AGENT_PACKAGE_VERSION="". -OVERRIDE_AGENT_PACKAGE_VERSION="" +OVERRIDE_AGENT_PACKAGE_VERSION="8.13.0" if [[ -n "$OVERRIDE_AGENT_PACKAGE_VERSION" ]]; then OVERRIDE_TEST_AGENT_VERSION=${OVERRIDE_AGENT_PACKAGE_VERSION}"-SNAPSHOT" diff --git a/deploy/kubernetes/elastic-agent-managed-kubernetes.yaml b/deploy/kubernetes/elastic-agent-managed-kubernetes.yaml index 21c172ffa53..33ec1e5af67 100644 --- a/deploy/kubernetes/elastic-agent-managed-kubernetes.yaml +++ b/deploy/kubernetes/elastic-agent-managed-kubernetes.yaml @@ -30,7 +30,7 @@ spec: dnsPolicy: ClusterFirstWithHostNet containers: - name: elastic-agent - image: docker.elastic.co/beats/elastic-agent:8.13.0 + image: docker.elastic.co/beats/elastic-agent:8.13.1 env: # Set to 1 for enrollment into Fleet server. If not set, Elastic Agent is run in standalone mode - name: FLEET_ENROLL diff --git a/deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml b/deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml index 8de0a507caf..e4be593e7b4 100644 --- a/deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml +++ b/deploy/kubernetes/elastic-agent-standalone-kubernetes.yaml @@ -704,7 +704,7 @@ spec: # mountPath: /etc/elastic-agent/inputs.d containers: - name: elastic-agent-standalone - image: docker.elastic.co/beats/elastic-agent:8.13.0 + image: docker.elastic.co/beats/elastic-agent:8.13.1 args: ["-c", "/etc/elastic-agent/agent.yml", "-e"] env: # The basic authentication username used to connect to Elasticsearch diff --git a/testing/integration/upgrade_broken_package_test.go b/testing/integration/upgrade_broken_package_test.go index f3834a47fa4..a9bc1dd9fab 100644 --- a/testing/integration/upgrade_broken_package_test.go +++ b/testing/integration/upgrade_broken_package_test.go @@ -32,6 +32,8 @@ func TestUpgradeBrokenPackageVersion(t *testing.T) { Sudo: true, // requires Agent installation }) + t.Skip("Skip until we have 8.13.1 build available") + ctx, cancel := testcontext.WithDeadline(t, context.Background(), time.Now().Add(10*time.Minute)) defer cancel() diff --git a/version/version.go b/version/version.go index eefb327ba2d..cf98230d4cb 100644 --- a/version/version.go +++ b/version/version.go @@ -4,5 +4,5 @@ package version -const defaultBeatVersion = "8.13.0" +const defaultBeatVersion = "8.13.1" const Agent = defaultBeatVersion