Skip to content

Commit 9207b24

Browse files
author
Kimmo Forss
committed
Setup deployer
1 parent 09b96f2 commit 9207b24

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

articles/sap/automation/deploy-control-plane.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ az login --service-principal -u "${ARM_CLIENT_ID}" -p="${ARM_CLIENT_SECRET}" --t
131131

132132

133133
export DEPLOYMENT_REPO_PATH="${HOME}/Azure_SAP_Automated_Deployment/sap-automation"
134-
="${subscriptionId}"
135134
export CONFIG_REPO_PATH="${HOME}/Azure_SAP_Automated_Deployment/config/WORKSPACES"
136135
export SAP_AUTOMATION_REPO_PATH="${HOME}/Azure_SAP_Automated_Deployment/sap-automation"
137136

articles/sap/automation/get-started.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,36 +41,35 @@ Follow the guidance here [Configure Azure DevOps for SDAF](configure-devops.md)
4141

4242
You can run the SAP on Azure Deployment Automation Framework from a virtual machine in Azure. The following steps describe how to create the environment.
4343

44-
Clone the repository and prepare the execution environment by using the following steps on a Linux Virtual machine in Azure:
44+
> [!IMPORTANT]
45+
> Ensure that the virtual machine is using either a system assigned or user assigned identity with permissions on the subscription to create resources.
46+
4547

4648
Ensure the Virtual Machine has the following prerequisites installed:
49+
4750
- git
4851
- jq
4952
- unzip
53+
- virtualenv (if running on Ubuntu)
5054

51-
Ensure that the virtual machine is using either a system assigned or user assigned identity with permissions on the subscription to create resources.
5255

53-
54-
- Create a directory called `Azure_SAP_Automated_Deployment` for your automation framework deployment.
56+
You can install the prerequisites on an Ubuntu Virtual Machine by using the following command:
5557

5658
```bash
57-
mkdir -p ~/Azure_SAP_Automated_Deployment; cd $_
59+
sudo apt-get install -y git jq unzip virtualenv
5860

59-
git clone https://github.com/Azure/sap-automation.git sap-automation
61+
```
6062

61-
git clone https://github.com/Azure/sap-automation-samples.git samples
63+
You can then install the deployer using the following commands:
6264

63-
git clone https://github.com/Azure/sap-automation-bootstrap.git config
65+
```bash
6466

65-
cd sap-automation/deploy/scripts
66-
67+
wget https://raw.githubusercontent.com/Azure/sap-automation/main/deploy/scripts/configure_deployer.sh -O configure_deployer.sh
68+
chmod +x ./configure_deployer.sh
6769
./configure_deployer.sh
68-
```
69-
7070

71+
```
7172

72-
> [!TIP]
73-
> The deployer already clones the required repositories.
7473

7574
## Samples
7675

0 commit comments

Comments
 (0)