diff --git a/docs/infrastructure/01-Introduction.md b/docs/infrastructure/01-Introduction.md index 38a9764..961ebbe 100644 --- a/docs/infrastructure/01-Introduction.md +++ b/docs/infrastructure/01-Introduction.md @@ -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). diff --git a/docs/infrastructure/02-getting-started/basic-knowledge/index.md b/docs/infrastructure/02-getting-started/basic-knowledge/index.md index 7cf4840..53b663b 100644 --- a/docs/infrastructure/02-getting-started/basic-knowledge/index.md +++ b/docs/infrastructure/02-getting-started/basic-knowledge/index.md @@ -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 ```