Skip to content

Commit 50def1b

Browse files
committed
Add clone instructions to docs
1 parent fbd09b6 commit 50def1b

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

docs/cert-manager-terraform-deployment.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@ This guide explains how to deploy **Cert-Manager** using the standalone Terrafor
1010

1111
## Deployment Steps
1212

13-
1. **Verify Context**:
13+
Make sure you've cloned the repository before running Terraform.
14+
15+
```bash
16+
git clone https://github.com/Adorsys-gis/observability.git
17+
cd observability
18+
```
19+
20+
1. **Verify Context** :
1421
Ensure you are pointing to the correct cluster before running Terraform.
1522
```bash
1623
kubectl config current-context

docs/ingress-controller-terraform-deployment.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ This guide explains how to deploy the **NGINX Ingress Controller** using the sta
1010

1111
## Deployment Steps
1212

13+
Make sure you've cloned the repository before running Terraform.
14+
15+
```bash
16+
git clone https://github.com/Adorsys-gis/observability.git
17+
cd observability
18+
```
19+
1320
1. **Verify Context**:
1421
Ensure you are pointing to the correct cluster.
1522
```bash

docs/kubernetes-observability.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,16 @@ If you prefer to deploy them standalone or manually, refer to their respective d
9696
kubectl config current-context
9797
```
9898

99-
2. **Initialize Terraform**
99+
2. **Clone the Repository**
100+
101+
If you haven't already, clone the project repository to your local machine.
102+
103+
```bash
104+
git clone https://github.com/Adorsys-gis/observability.git
105+
cd observability
106+
```
107+
108+
3. **Initialize Terraform**
100109

101110
Navigate to the Terraform directory and initialize the project to download required providers and modules.
102111

@@ -105,15 +114,15 @@ If you prefer to deploy them standalone or manually, refer to their respective d
105114
terraform init
106115
```
107116

108-
3. **Plan Deployment**
117+
4. **Plan Deployment**
109118

110119
Generate an execution plan to verify the resources that will be created.
111120

112121
```bash
113122
terraform plan
114123
```
115124

116-
4. **Apply Configuration**
125+
5. **Apply Configuration**
117126

118127
Execute the plan to provision infrastructure and deploy the application stack.
119128

0 commit comments

Comments
 (0)