Skip to content

Commit a0740a3

Browse files
committed
Added new install method
1 parent 2e053d7 commit a0740a3

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

content/learning-paths/cross-platform/deploy-containerized-workloads-with-topo/deploy-workload.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,12 @@ Depending on the permissions you have setup with your target device, you may not
100100
ssh -L 3000:localhost:3000 user@my-target
101101
```
102102

103+
To stop a deployed Topo application on the target, run `topo stop` on the host:
104+
105+
```bash
106+
topo stop --target user@my-target
107+
```
108+
103109
## (Optional) Repeat this learning path, using a CLI Agent
104110

105111
Topo is packaged as a single executable with a `README.md` file. It is straightforward for agents to leverage.

content/learning-paths/cross-platform/deploy-containerized-workloads-with-topo/overview-and-setup.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,19 @@ Topo can also be leveraged by AI Agents to further streamline and automate.
2626

2727
In this step, you install Topo on the host, along with other dependencies.
2828

29-
On your host device, find the [latest release of Topo](https://github.com/arm/topo/releases), download the binary for your specific platform (x86/Arm, Linux/MacOS/Windows), and extract it. Topo is provided as a single executable file and `README.md`. Place Topo on your `PATH`:
29+
On your host device, run the following commands to install Topo:
3030

3131
{{< tabpane code=true >}}
3232
{{< tab header="Linux / MacOS">}}
33-
export PATH=$PATH:$HOME/your-topo-folder
33+
curl -fsSL https://raw.githubusercontent.com/arm/topo/refs/heads/main/scripts/install.sh | sh
3434
{{< /tab >}}
3535
{{< tab header="Windows" >}}
36-
set PATH=%PATH%;%USERPROFILE%\your-topo-folder
36+
irm https://raw.githubusercontent.com/arm/topo/refs/heads/main/scripts/install.ps1 | iex
3737
{{< /tab >}}
3838
{{< /tabpane >}}
3939

40+
Alternatively, find the [latest release of Topo](https://github.com/arm/topo/releases), download the binary for your specific platform (x86/Arm, Linux/MacOS/Windows), and extract it. Topo is provided as a single executable file and `README.md`. Place Topo on your `PATH`:
41+
4042
Run the following command in the terminal on your host device to confirm the installation:
4143

4244
```bash

0 commit comments

Comments
 (0)