Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Added video and fixed config value (#14813) #15130

Merged
merged 1 commit into from
Nov 26, 2024
Merged
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
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
Loading