You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/buildkite-gcp/installation.md
+26-16Lines changed: 26 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
-
title: Install Buildkite
2
+
title: Install Buildkite on a Google Axion C4A Arm VM
3
3
weight: 4
4
4
5
5
### FIXED, DO NOT MODIFY
6
6
layout: learningpathall
7
7
---
8
8
9
-
## Install Buildkite on a Google Axion C4A Arm VM
9
+
## Get started with installing the Buildkite agent
10
10
This section guides you through installing the Buildkite agent on a Google Axion C4A Arm VM, enabling it to connect to your Buildkite account and run the CI/CD pipelines.
buildkite-agent version 3.109.1+10971.5c28e309805a3d748068a3ff7f5c531f51f6f495
81
82
```
82
83
84
+
85
+
83
86
{{% notice Note %}}
84
-
The Buildkite Agent version 3.43.0 introduces Linux/Arm64 Docker image for the Buildkite Agent, making deployment and installation easier for Linux users on Arm. You can view the [release note](https://github.com/buildkite/agent/releases/tag/v3.43.0).
87
+
The Buildkite Agent version 3.43.0 introduces Linux/Arm64 Docker image for the Buildkite Agent, making deployment and installation easier for Linux users on Arm. You can view the [Buildkite agent GitHub release note](https://github.com/buildkite/agent/releases/tag/v3.43.0).
85
88
86
-
The [Arm Ecosystem Dashboard](https://developer.arm.com/ecosystem-dashboard/) recommends Buildkite Agent version v3.43.0 as the minimum recommended on the Arm platforms.
89
+
The [Arm Ecosystem Dashboard](https://developer.arm.com/ecosystem-dashboard/) recommends Buildkite Agent version v3.43.0 or later for Arm platforms.
87
90
{{% /notice %}}
88
-
89
91
### Install Docker and Docker Buildx
90
92
91
-
Buildkite uses Docker to build and push images. First, refresh the package repositories and install the required packages including git, Python3-pip, and Docker:
93
+
Buildkite uses Docker to build and push images.
92
94
93
-
Next, enable and start the Docker service to ensure it runs automatically when your VM starts:
95
+
To make sure Docker runs whenever your VM starts, enable and start the Docker service:
96
+
97
+
```bash
98
+
sudo systemctl enable docker
99
+
sudo systemctl start docker
100
+
```
101
+
102
+
This step ensures Docker is always available for your CI/CD pipelines.
Now that the Buildkite installation is complete, you can set up the Buildkite agent.
170
+
## What you've accomplished
171
+
172
+
Great job! You’ve installed Docker, Docker Buildx, and the Buildkite agent on your Arm VM. Next, you’ll set up and connect your Buildkite agent to your account.
0 commit comments