You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**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)
Copy file name to clipboardExpand all lines: docs/sources/setup/install/helm/_index.md
+10
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,22 @@ This guide references the Loki Helm chart version 3.0 or greater and contains th
22
22
23
23
If you are installing Grafana Enterprise Logs, follow the [GEL Helm installation](https://grafana.com/docs/enterprise-logs/<ENTERPRISE_LOGS_VERSION>/setup/helm/).
24
24
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 >}}
25
34
26
35
## Cloud Deployment Guides
27
36
28
37
The following guides provide step-by-step instructions for deploying Loki on cloud providers:
Copy file name to clipboardExpand all lines: docs/sources/setup/install/helm/deployment-guides/aws.md
-3
Original file line number
Diff line number
Diff line change
@@ -551,9 +551,6 @@ k6 is one of the fastest ways to test your Loki deployment. This will allow you
551
551
iterations: 10,
552
552
};
553
553
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
-
*/
557
554
export default () => {
558
555
// Push request with 10 streams and uncompressed logs between 800KB and 2MB
559
556
var res = client.pushParameterized(10, 800 * KB, 2 * MB);
0 commit comments