Skip to content

Commit 312937d

Browse files
docs: Cloud Deployment Azure (#15397)
**What this PR does / why we need it**: Continuation of the cloud deployment guides. This teaches the user how to deploy Loki on Azure using the helm. Including: * Azure Setup * Helm values config * Testing (cherry picked from commit 672f91c)
1 parent 1665757 commit 312937d

File tree

5 files changed

+604
-5
lines changed

5 files changed

+604
-5
lines changed

Diff for: docs/sources/setup/install/helm/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,22 @@ This guide references the Loki Helm chart version 3.0 or greater and contains th
2222

2323
If you are installing Grafana Enterprise Logs, follow the [GEL Helm installation](https://grafana.com/docs/enterprise-logs/<ENTERPRISE_LOGS_VERSION>/setup/helm/).
2424

25+
## Deployment Recommendations
26+
27+
Loki is designed to be run in two states:
28+
* [Monolithic](https://grafana.com/docs/loki/<LOKI_VERSION>/get-started/deployment-modes/#monolithic-mode): Recommended when you are running Loki as part of a small meta monitoring stack.
29+
* [Microservices](https://grafana.com/docs/loki/<LOKI_VERSION>/get-started/deployment-modes/#microservices-mode): For workloads that require high availability and scalability. Loki is deployed in this mode internally at Grafana Labs.
30+
31+
{{< admonition type="tip" >}}
32+
Loki can also be deployed in [Simple Scalable mode](https://grafana.com/docs/loki/<LOKI_VERSION>/get-started/deployment-modes/#simple-scalable). For the best possible experience in production, we recommend deploying Loki in *microservices* mode.
33+
{{< /admonition >}}
2534

2635
## Cloud Deployment Guides
2736

2837
The following guides provide step-by-step instructions for deploying Loki on cloud providers:
2938

3039
- [Amazon EKS](https://grafana.com/docs/loki/<LOKI_VERSION>/setup/install/helm/deployment-guides/aws/)
40+
- [Azure AKS](https://grafana.com/docs/loki/<LOKI_VERSION>/setup/install/helm/deployment-guides/azure/)
3141

3242
## Reference
3343

Diff for: docs/sources/setup/install/helm/deployment-guides/_index.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ keywords:
1010

1111
The following guides provide step-by-step instructions for deploying Loki on cloud providers:
1212

13-
- [Deploy Loki on AWS](https://grafana.com/docs/loki/<LOKI_VERSION>/setup/install/helm/deployment-guides/aws/)
13+
- [Deploy Loki on AWS](https://grafana.com/docs/loki/<LOKI_VERSION>/setup/install/helm/deployment-guides/aws/)
14+
- [Deploy Loki on Azure](https://grafana.com/docs/loki/<LOKI_VERSION>/setup/install/helm/deployment-guides/azure/)

Diff for: docs/sources/setup/install/helm/deployment-guides/aws.md

-3
Original file line numberDiff line numberDiff line change
@@ -551,9 +551,6 @@ k6 is one of the fastest ways to test your Loki deployment. This will allow you
551551
iterations: 10,
552552
};
553553
554-
**It is important to create a namespace called `loki` as our trust policy is set to allow the IAM role to be used by the `loki` service account in the `loki` namespace. This is configurable but make sure to update your service account.**
555-
* "main" function for each VU iteration
556-
*/
557554
export default () => {
558555
// Push request with 10 streams and uncompressed logs between 800KB and 2MB
559556
var res = client.pushParameterized(10, 800 * KB, 2 * MB);

0 commit comments

Comments
 (0)