Skip to content

Commit

Permalink
update agent_init.sh by adding AGENT_VERSION variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary.Wang committed Jun 14, 2024
1 parent 16cf5e4 commit 2742276
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docs/ai-ml/guide/network-security-mlops-content.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,10 +378,12 @@ As shown in the preceding code block, the Terraform script calls *agent_init.sh*
...

# Creates directory and downloads Azure DevOps agent installation files
# Find more agent versions at https://github.com/microsoft/azure-pipelines-agent/releases
export AGENT_VERSION="3.240.1"
sudo mkdir /myagent
cd /myagent
sudo wget https://vstsagentpackage.azureedge.net/agent/2.194.0/vsts-agent-linux-x64-2.194.0.tar.gz
sudo tar zxvf ./vsts-agent-linux-x64-2.194.0.tar.gz
sudo wget https://vstsagentpackage.azureedge.net/agent/${AGENT_VERSION}/vsts-agent-linux-x64-${AGENT_VERSION}.tar.gz
sudo tar zxvf ./vsts-agent-linux-x64-${AGENT_VERSION}.tar.gz
sudo chmod -R 777 /myagent

# Unattended installation
Expand Down
2 changes: 1 addition & 1 deletion docs/ai-ml/guide/network-security-mlops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
description: Use Azure network security capabilities, such as virtual networks, network peering, Private Link, and private DNS zones to protect MLOps solutions.
author: gary918
ms.author: ganwa
ms.date: 03/14/2023
ms.date: 06/14/2023
ms.topic: example-scenario
ms.collection: ce-skilling-ai-copilot
ms.service: architecture-center
Expand Down

0 comments on commit 2742276

Please sign in to comment.