Skip to content

Commit

Permalink
docs: Added video and fixed config value (#14813) (#15130)
Browse files Browse the repository at this point in the history
Co-authored-by: Jay Clifford <[email protected]>
  • Loading branch information
JStickler and Jayclifford345 authored Nov 26, 2024
1 parent b4a8273 commit 69ada30
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions docs/sources/setup/install/helm/deployment-guides/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ This guide shows how to deploy a minimally viable Loki in **microservice** mode

There are two methods for authenticating and connecting Loki to AWS S3. We will guide you through the recommended method of granting access via an IAM role.

{{< youtube id="5lXmWmofqwM" >}}

## Considerations

{{< admonition type="caution" >}}
Expand Down Expand Up @@ -312,12 +314,20 @@ deploymentMode: Distributed

ingester:
replicas: 3
zoneAwareReplication:
enabled: false
persistence:
storageClass: gp3
accessModes:
- ReadWriteOnce
size: 10Gi

querier:
replicas: 3
maxUnavailable: 2
persistence:
storageClass: gp3
accessModes:
- ReadWriteOnce
size: 10Gi
queryFrontend:
replicas: 2
maxUnavailable: 1
Expand All @@ -330,14 +340,27 @@ distributor:
maxUnavailable: 2
compactor:
replicas: 1

persistence:
storageClass: gp3
accessModes:
- ReadWriteOnce
size: 10Gi
indexGateway:
replicas: 2
maxUnavailable: 1

persistence:
storageClass: gp3
accessModes:
- ReadWriteOnce
size: 10Gi
ruler:
replicas: 1
maxUnavailable: 1
persistence:
storageClass: gp3
accessModes:
- ReadWriteOnce
size: 10Gi


# This exposes the Loki gateway so it can be written to and queried externaly
Expand Down

0 comments on commit 69ada30

Please sign in to comment.