Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/infrastructure/01-Introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ AKS gives us the flexibility of a 10s pod deployment, reliability (with ArgoCD e
## About this documentation
:::important
Most of the docs explain procedures with the Azure CLI and the Kubernetes CLI.
Make sure to [install and configure them](./Tutorials/setup#azure-cli--kubectl) to follow along.
Make sure to [install and configure them](./getting-started/setup#azure-cli--kubectl) to follow along.
Alternatively, you can see the [official Azure documentation](https://learn.microsoft.com/en-us/azure/?product=popular) for how to use the Azure portal.
:::


The best place to start is going through the [Tutorials](./Tutorials/setup) section to get a high level overview of how things are organized.
The best place to start is going through the [Getting Started](./getting-started/setup) section to get a high level overview of how things are organized.
If you're looking for a guide on how to achieve a specific outcome, you can look in the [Guides](./Guides/Add%20a%20Secret).

14 changes: 10 additions & 4 deletions docs/infrastructure/02-getting-started/basic-knowledge/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,22 @@ Everything regarding the deployment of apps and services is divided into two rep

```mermaid
flowchart TD
subgraph Github
tf([**terraform**])
cd([**polinetwork-cd**])
end
subgraph Azure
vm[VMs and other resources]
subgraph k8s[K8S cluster]
ArgoCD -.-> app[Apps and Services]
argocd[ArgoCD]
app@{ shape: processes, label: "Apps / Services" }
end
vm[VMs and other resources] <--> k8s
end
tf([*polinetworkorg*/**terraform**]) -.-> Azure
cd([*polinetworkorg*/**polinetwork-cd**]) <-.-> ArgoCD

tf -.-> vm
tf -.-> k8s
vm <--> k8s
cd <-.-> argocd --> app
```

<!-- markdownlint-disable-next-line -->
Expand Down
Loading