diff --git a/docs/sources/setup/install/helm/deployment-guides/aws.md b/docs/sources/setup/install/helm/deployment-guides/aws.md index ba05a84ed3b91..5ea5e1d0e09ae 100644 --- a/docs/sources/setup/install/helm/deployment-guides/aws.md +++ b/docs/sources/setup/install/helm/deployment-guides/aws.md @@ -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" >}} @@ -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 @@ -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