Skip to content

Commit 489bc45

Browse files
authored
Update Azure Docs for v1 (#764)
1 parent cd20399 commit 489bc45

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

docs-source/spring/content/azure/_index.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A few setup steps are required in both OCI and Azure to deploy the Oracle Backen
2929
### OCI
3030

3131
The Multicloud installation provisions an Oracle Autonomous Database in OCI using
32-
the [Oracle Database Operator for Kubernetes (OraOperator)](https://github.com/oracle/oracle-database-operator).
32+
the [Oracle Database Operator for Kubernetes (OraOperator)](https://github.com/oracle/oracle-database-operator).
3333

3434
To allow the OraOperator access to OCI, an [API Key](https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm) must be
3535
generated using these steps:
@@ -52,25 +52,28 @@ The Multicloud installation is done using the Azure Cloud Shell. The following s
5252
2. Open the Azure Cloud Shell. For example:
5353

5454
![Azure Cloud Shell Icon](AzureCloudShellIcon.png)
55-
55+
5656
3. Upload the [Oracle Backend for Spring Boot and Microservices](https://github.com/oracle/microservices-datadriven/releases/download/OBAAS-1.0.0/azure-ebaas-platform_latest.zip) stack. For example:
5757

5858
![Azure Upload](AzureUpload.png)
59-
59+
6060
4. Upload the API Private Key (`private_key.pem`).
6161

6262
5. Unzip the stack to a directory called `obaas`. For example:
6363

64-
`unzip azure-ebaas-platform_latest.zip -d /tmp/obaas`
65-
64+
`unzip azure-ebaas_latest.zip -d ~/obaas`
65+
6666
6. Move the `private_key.pem` file to the `obaas` directory. For example:
6767

68-
`mv private_key.pem /tmp/obaas/`
69-
68+
`mv private_key.pem ~/obaas/`
69+
7070
7. Run the configuration Helper script using the values from the API Key. For example:
7171

72-
`cd /tmp/obaas`
73-
`./obaas_configure.py`
72+
```bash
73+
cd ~/obaas
74+
./obaas_configure.py
75+
```
76+
7477
![Azure Configure](AzureConfigure.png)
7578

7679

@@ -80,19 +83,18 @@ Install Ansible to run the Configuration Management Playbook. The Helper script
8083
Ansible and some additional modules. For example:
8184

8285
```bash
83-
cd /tmp/obaas/ansible
84-
./setup_ansible.sh
85-
source ./activate.env
86+
cd ~/obaas/ansible
87+
./setup_ansible.sh /tmp
88+
source ./activate.env /tmp
8689
```
8790

8891
## Deploy the Infrastructure
8992

9093
From the Azure Cloud Shell, run these commands to deploy the infrastructure:
9194

9295
```bash
93-
cd /tmp/obaas
96+
cd ~/obaas
9497
terraform init
9598
terraform plan -out=multicloud.plan
9699
terraform apply "multicloud.plan"
97100
```
98-

0 commit comments

Comments
 (0)