From 4c857d04ebf2a016cdee0dd47770b63ce457ddbb Mon Sep 17 00:00:00 2001 From: Edward Welch Date: Thu, 4 Apr 2024 13:01:50 +0000 Subject: [PATCH] remove deprecated config examples Signed-off-by: Edward Welch --- .../examples/configuration-examples.md | 59 ------------------- 1 file changed, 59 deletions(-) diff --git a/docs/sources/configure/examples/configuration-examples.md b/docs/sources/configure/examples/configuration-examples.md index eaaf659049dee..32d6143f84282 100644 --- a/docs/sources/configure/examples/configuration-examples.md +++ b/docs/sources/configure/examples/configuration-examples.md @@ -403,62 +403,3 @@ memberlist: - loki-gossip-ring.loki.svc.cluster.local:7946 # :7946 is the default memberlist port. ``` - - -## 16-(Deprecated)-Cassandra-Snippet.yaml - -```yaml - -# This is a partial config that uses the local filesystem for chunk storage and Cassandra for index storage -# WARNING - DEPRECATED: The Cassandra index store is deprecated and will be removed in a future release. - -schema_config: - configs: - - from: 2020-05-15 - store: cassandra - object_store: filesystem - schema: v12 - index: - prefix: cassandra_table - period: 168h - -storage_config: - cassandra: - username: cassandra - password: cassandra - addresses: 127.0.0.1 - auth: true - keyspace: lokiindex - - filesystem: - directory: /tmp/loki/chunks - - -``` - - -## 17-(Deprecated)-S3-And-DynamoDB-Snippet.yaml - -```yaml - -# This partial configuration uses S3 for chunk storage and uses DynamoDB for index storage -# WARNING - DEPRECATED: The DynamoDB index store is deprecated and will be removed in a future release. - -schema_config: - configs: - - from: 2020-05-15 - store: aws - object_store: s3 - schema: v12 - index: - prefix: loki_ - -storage_config: - aws: - s3: s3://access_key:secret_access_key@region/bucket_name - dynamodb: - dynamodb_url: dynamodb://access_key:secret_access_key@region - - -``` -