Skip to content

Commit 5640390

Browse files
alexsapranpchila
andauthored
Add pipeline for packaging Elastic-agent (#2727)
* Create elastic-agent package pipeline This commit adds the required pipeline for packaging the elastic-agent project by pulling the dependencies form a given manifest URL. Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * remove the updateWithDarwinUniversal as it turns out we dont need this function anymore. Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Move package script into steps folder Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Fetch DRA secret from vault * Add initial BK DRA publishing Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Add depends_on key for the DRA step Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Make sure we define the RM workflow parameter Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Adjust the BEAT_VERSION and WORKFLOW param Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Make COMMIT and BRANCH variables The job will now accept the DRA_COMMIT and DRA_BRANCH as variables for the build for the release manager. Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Add dependencies report Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> * Add ironbank in the package Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Add a mage target to rename the artefacts for DRA The existing Beats release job was performing a renaming for the docker image artefacts in order to keep comp with the release manager. This commit adds this functionality into a mage target rather than a bash script Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Switch to AWS for packaging Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Add WORKSPACE and GO_VERSION in pre-command This will make sure that every command has the WORKSPACE and the GO_VERSION environment variables set. Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Add AGENT_OS_NAME and AGENT_OS_ARCH variables Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Add ARM packaging Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Change permissions for DRA Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Set DRA_DRY_RUN default to empty Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Add manual parameters for the pipeline Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Change to bigger instance and disk Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Move to AWS agent Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * Switch back to GCP Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> * DRY_RUN default to empty Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> --------- Signed-off-by: Alexandros, Sapranidis <alexandros@elastic.co> Signed-off-by: Alexandros Sapranidis <alexandros@elastic.co> Co-authored-by: Paolo Chila <paolo.chila@elastic.co>
1 parent d3d27be commit 5640390

21 files changed

+924
-241
lines changed

.buildkite/hooks/post-checkout

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ MERGE_BRANCH="pr_merge_${PR_ID}"
4646

4747
checkout_merge "${TARGET_BRANCH}" "${PR_COMMIT}" "${MERGE_BRANCH}"
4848

49-
echo "Commit information"
49+
echo "--- Commit information"
5050
git log --format=%B -n 1
5151

5252
# Ensure buildkite groups are rendered
53-
echo ""
53+
echo ""

.buildkite/hooks/pre-command

100644100755
+45-38
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,49 @@
22

33
set -euo pipefail
44

5-
function retry {
6-
local retries=$1
7-
shift
5+
if [[ -z "${WORKSPACE-""}" ]]; then
6+
WORKSPACE=$(git rev-parse --show-toplevel)
7+
export WORKSPACE
8+
fi
89

9-
local count=0
10-
until "$@"; do
11-
exit=$?
12-
wait=$((2 ** count))
13-
count=$((count + 1))
14-
if [ $count -lt "$retries" ]; then
15-
>&2 echo "Retry $count/$retries exited $exit, retrying in $wait seconds..."
16-
sleep $wait
17-
else
18-
>&2 echo "Retry $count/$retries exited $exit, no more retries left."
19-
return $exit
20-
fi
21-
done
22-
return 0
23-
}
10+
source "${WORKSPACE}/.buildkite/scripts/common.sh"
11+
12+
if [[ -z "${GO_VERSION-""}" ]]; then
13+
export GO_VERSION=$(cat "${WORKSPACE}/.go-version")
14+
fi
2415

2516
DOCKER_REGISTRY="docker.elastic.co"
2617
DOCKER_REGISTRY_SECRET_PATH="kv/ci-shared/platform-ingest/docker_registry_prod"
27-
CI_DRA_ROLE_PATH=kv/ci-shared/release/dra-role
28-
CI_GCP_OBS_PATH=kv/ci-shared/observability-ingest/cloud/gcp
29-
CI_AGENT_QA_OBS_PATH=kv/ci-shared/observability-ingest/elastic-agent-ess-qa
18+
CI_DRA_ROLE_PATH="kv/ci-shared/release/dra-role"
19+
CI_GCP_OBS_PATH="kv/ci-shared/observability-ingest/cloud/gcp"
20+
CI_AGENT_QA_OBS_PATH="kv/ci-shared/observability-ingest/elastic-agent-ess-qa"
21+
CI_DRA_ROLE_PATH="kv/ci-shared/release/dra-role"
22+
23+
24+
function docker_login {
25+
DOCKER_USERNAME_SECRET=$(retry 5 vault kv get -field user "${DOCKER_REGISTRY_SECRET_PATH}")
26+
DOCKER_PASSWORD_SECRET=$(retry 5 vault kv get -field password "${DOCKER_REGISTRY_SECRET_PATH}")
27+
docker login -u "${DOCKER_USERNAME_SECRET}" -p "${DOCKER_PASSWORD_SECRET}" "${DOCKER_REGISTRY}" 2>/dev/null
28+
unset DOCKER_USERNAME_SECRET DOCKER_PASSWORD_SECRET
29+
}
30+
31+
function release_manager_login {
32+
DRA_CREDS_SECRET=$(retry 5 vault kv get -field=data -format=json ${CI_DRA_ROLE_PATH})
33+
VAULT_ADDR_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.vault_addr')
34+
VAULT_ROLE_ID_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.role_id')
35+
VAULT_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.secret_id')
36+
export VAULT_ADDR_SECRET VAULT_ROLE_ID_SECRET VAULT_SECRET
37+
}
3038

31-
# Secrets must be redacted
32-
# https://buildkite.com/docs/pipelines/managing-log-output#redacted-environment-variables
39+
if [[ "$BUILDKITE_PIPELINE_SLUG" == "elastic-agent-package" ]]; then
40+
if [[ "$BUILDKITE_STEP_KEY" == "package_elastic-agent" ]]; then
41+
docker_login
42+
fi
43+
44+
if [[ "$BUILDKITE_STEP_KEY" == "dra-publish" ]]; then
45+
release_manager_login
46+
fi
47+
fi
3348

3449
if [[ "$BUILDKITE_PIPELINE_SLUG" == "elastic-agent" && "$BUILDKITE_STEP_KEY" == "integration-tests" ]]; then
3550
# Set GCP credentials
@@ -44,23 +59,15 @@ if [[ "$BUILDKITE_PIPELINE_SLUG" == "elastic-agent" && "$BUILDKITE_STEP_KEY" ==
4459
export TEST_INTEG_AUTH_ESS_APIKEY_FILE=$(realpath ./apiKey)
4560
fi
4661

47-
if [[ ("$BUILDKITE_PIPELINE_SLUG" == "elastic-agent-package" && "$BUILDKITE_STEP_KEY" == "package_elastic-agent") || "$BUILDKITE_PIPELINE_SLUG" == "elastic-agent-binary-dra" ]]; then
62+
if [[ "$BUILDKITE_PIPELINE_SLUG" == "elastic-agent-binary-dra" ]]; then
4863
if command -v docker &>/dev/null; then
49-
export DOCKER_USERNAME_SECRET=$(retry 5 vault kv get -field user "${DOCKER_REGISTRY_SECRET_PATH}")
50-
export DOCKER_PASSWORD_SECRET=$(retry 5 vault kv get -field password "${DOCKER_REGISTRY_SECRET_PATH}")
51-
docker login -u "${DOCKER_USERNAME_SECRET}" -p "${DOCKER_PASSWORD_SECRET}" "${DOCKER_REGISTRY}" 2>/dev/null
52-
unset DOCKER_USERNAME_SECRET DOCKER_PASSWORD_SECRET
64+
docker_login
5365
else
5466
echo "+++ docker not found"
5567
fi
56-
fi
57-
58-
if [[ "$BUILDKITE_PIPELINE_SLUG" == "elastic-agent-binary-dra" && ("$BUILDKITE_STEP_KEY" == "publish-dra-snapshot" || "$BUILDKITE_STEP_KEY" == "publish-dra-staging") ]]; then
59-
echo "+++ Setting DRA params"
60-
# Shared secret path containing the dra creds for project teams
61-
DRA_CREDS_SECRET=$(retry 5 vault kv get -field=data -format=json ${CI_DRA_ROLE_PATH})
62-
VAULT_ADDR_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.vault_addr')
63-
VAULT_ROLE_ID_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.role_id')
64-
VAULT_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.secret_id')
65-
export VAULT_ADDR_SECRET VAULT_ROLE_ID_SECRET VAULT_SECRET
68+
if [[ ("$BUILDKITE_STEP_KEY" == "publish-dra-snapshot" || "$BUILDKITE_STEP_KEY" == "publish-dra-staging") ]]; then
69+
echo "+++ Setting DRA params"
70+
# Shared secret path containing the dra creds for project teams
71+
release_manager_login
72+
fi
6673
fi

.buildkite/hooks/pre-exit

100644100755
+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -eo pipefail
24

35
if [ -n "$GOOGLE_APPLICATION_CREDENTIALS" ]; then

.buildkite/pipeline.elastic-agent-binary-dra.yml

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
12
env:
3+
# this is required in order to allow the build process to override the default PWD of the BEAT_NAME.
4+
BEAT_NAME: "elastic-agent"
5+
# after moving elastic-agent out of beats, we should update the URL of the packaging.
6+
BEAT_URL: "https://www.elastic.co/elastic-agent"
27
DRA_PROJECT: "elastic-agent-core"
3-
DRA_ARTIFACT_SET: "agent-core"
8+
DRA_PROJECT_ARTIFACT_ID: "agent-core"
9+
410
steps:
511
- group: ":beats: DRA Elastic-Agent Core Snapshot :beats:"
612
key: "dra-core-snapshot"
@@ -22,7 +28,15 @@ steps:
2228

2329
- label: ":hammer: DRA Publish Elastic-Agent Core Snapshot"
2430
command: |
31+
echo "+++ Restoring Artifacts"
2532
buildkite-agent artifact download "build/**/*" .
33+
echo "+++ Changing permissions for the release manager"
34+
sudo chown -R :1000 build/distributions/
35+
echo "+++ Running DRA publish step"
36+
DRA_COMMIT=$BUILDKITE_COMMIT
37+
export DRA_COMMIT
38+
DRA_BRANCH=$BUILDKITE_BRANCH
39+
export DRA_BRANCH
2640
.buildkite/scripts/steps/dra-publish.sh
2741
key: "publish-dra-snapshot"
2842
agents:
@@ -51,7 +65,15 @@ steps:
5165

5266
- label: ":hammer: DRA Publish Elastic-Agent Core staging"
5367
command: |
68+
echo "+++ Restoring Artifacts"
5469
buildkite-agent artifact download "build/**/*" .
70+
echo "+++ Changing permissions for the release manager"
71+
sudo chown -R :1000 build/distributions/
72+
echo "+++ Running DRA publish step"
73+
DRA_COMMIT=$BUILDKITE_COMMIT
74+
export DRA_COMMIT
75+
DRA_BRANCH=$BUILDKITE_BRANCH
76+
export DRA_BRANCH
5577
.buildkite/scripts/steps/dra-publish.sh
5678
key: "publish-dra-staging"
5779
agents:
+133-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,136 @@
11
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
2+
env:
3+
DOCKER_REGISTRY: "docker.elastic.co"
4+
SETUP_GVM_VERSION: 'v0.5.0' # https://github.com/andrewkroh/gvm/issues/44#issuecomment-1013231151
5+
SETUP_MAGE_VERSION: '1.14.0'
6+
# this is required in order to allow the build process to override the default PWD of the BEAT_NAME.
7+
BEAT_NAME: "elastic-agent"
8+
# after moving elastic-agent out of beats, we should update the URL of the packaging.
9+
BEAT_URL: "https://www.elastic.co/elastic-agent"
210

311
steps:
4-
- label: "Example test"
5-
command: echo "Hello!"
12+
- input: "Build parameters"
13+
if: build.env("ManifestURL") == null
14+
fields:
15+
- text: "ManifestURL"
16+
key: "ManifestURL"
17+
default: ""
18+
required: true
19+
hint: "Link to the build manifest URL."
20+
- select: "Mage verbose"
21+
key: "MAGEFILE_VERBOSE"
22+
required: "false"
23+
options:
24+
- label: "True"
25+
value: "1"
26+
- label: "False"
27+
value: "0"
28+
hint: "Increase verbosity of the mage commands, defaults to 0"
29+
- select: "DRA Workflow"
30+
key: "DRA_WORKFLOW"
31+
required: "true"
32+
options:
33+
- label: "snapshot"
34+
value: "snapshot"
35+
- label: "staging"
36+
value: "staging"
37+
hint: "What workflow of the DRA release process this build is going to be triggered for"
38+
- text: "DRA Version"
39+
key: "DRA_VERSION"
40+
required: "true"
41+
default: ""
42+
hint: "The packaging version to use"
43+
- select: "DRA DRY-RUN"
44+
key: "DRA_DRY_RUN"
45+
required: "false"
46+
options:
47+
- label: "True"
48+
value: "--dry-run"
49+
- label: "False"
50+
value: ""
51+
hint: "If the DRA release manager script would actually publish anything or just print"
52+
53+
- wait: ~
54+
if: build.env("ManifestURL") == null
55+
56+
- group: ":Packaging Artefacts"
57+
key: "package"
58+
steps:
59+
- label: ":package: Cross Building and package elastic-agent"
60+
key: package_elastic-agent
61+
agents:
62+
provider: "gcp"
63+
machineType: "c2-standard-16"
64+
diskSizeGb: 400
65+
command: |
66+
if [[ -z "${ManifestURL}" ]]; then
67+
export ManifestURL=$(buildkite-agent meta-data get ManifestURL --default "")
68+
if [[ -z "${ManifestURL}" ]]; then
69+
echo ":broken_heart: Missing ManifestURL variable or empty string provided"
70+
exit 1
71+
fi
72+
fi
73+
if [[ -z "${MAGEFILE_VERBOSE}" ]]; then
74+
export MAGEFILE_VERBOSE=$(buildkite-agent meta-data get MAGEFILE_VERBOSE --default "0")
75+
fi
76+
.buildkite/scripts/steps/package.sh
77+
artifact_paths:
78+
- "build/distributions/**/*"
79+
- label: ":package: Package ARM elastic-agent"
80+
key: package_elastic-agent-arm
81+
agents:
82+
provider: "aws"
83+
instanceType: "t4g.2xlarge"
84+
imagePrefix: "core-ubuntu-2004-aarch64"
85+
env:
86+
PLATFORMS: "linux/arm64"
87+
PACKAGES: "docker"
88+
command: |
89+
if [[ -z "${ManifestURL}" ]]; then
90+
export ManifestURL=$(buildkite-agent meta-data get ManifestURL --default "")
91+
if [[ -z "${ManifestURL}" ]]; then
92+
echo ":broken_heart: Missing ManifestURL variable or empty string provided"
93+
exit 1
94+
fi
95+
fi
96+
if [[ -z "${MAGEFILE_VERBOSE}" ]]; then
97+
export MAGEFILE_VERBOSE=$(buildkite-agent meta-data get MAGEFILE_VERBOSE --default "0")
98+
fi
99+
.buildkite/scripts/steps/package.sh
100+
artifact_paths:
101+
- "build/distributions/**/*"
102+
103+
- label: ":elastic-stack: Publishing to DRA"
104+
key: dra-publish
105+
depends_on: package
106+
agents:
107+
provider: "gcp"
108+
env:
109+
DRA_PROJECT_ID: "elastic-agent-package"
110+
DRA_PROJECT_ARTIFACT_ID: "agent-package"
111+
command: |
112+
echo "+++ Restoring Artifacts"
113+
buildkite-agent artifact download "build/**/*" .
114+
echo "+++ Changing permissions for the release manager"
115+
sudo chown -R :1000 build/distributions/
116+
echo "+++ Running DRA publish step"
117+
if [[ -z "${MAGEFILE_VERBOSE}" ]]; then
118+
export MAGEFILE_VERBOSE=$(buildkite-agent meta-data get MAGEFILE_VERBOSE --default "0")
119+
fi
120+
if [[ -z "${DRA_DRY_RUN}" ]]; then
121+
DRA_DRY_RUN=$(buildkite-agent meta-data get DRA_DRY_RUN --default "")
122+
export DRA_DRY_RUN
123+
fi
124+
if [[ -z "${DRA_VERSION}" ]]; then
125+
DRA_VERSION=$(buildkite-agent meta-data get DRA_VERSION --default "")
126+
export DRA_VERSION
127+
fi
128+
if [[ -z "${DRA_COMMIT}" ]]; then
129+
DRA_COMMIT=$BUILDKITE_COMMIT
130+
export DRA_COMMIT
131+
fi
132+
if [[ -z "${DRA_BRANCH}" ]]; then
133+
DRA_BRANCH=$BUILDKITE_BRANCH
134+
export DRA_BRANCH
135+
fi
136+
.buildkite/scripts/steps/dra-publish.sh

.buildkite/scripts/bootstrap.sh

-30
This file was deleted.

0 commit comments

Comments
 (0)