From f2fb161a08a1f8735939fd8fb65c7fd0006fcb5f Mon Sep 17 00:00:00 2001
From: Goutham Veeramachaneni <gouthamve@gmail.com>
Date: Fri, 17 May 2019 17:07:07 +0530
Subject: [PATCH] Fix local config: Use DayTime (#598)

* Fix local config: Use DayTime

Psst, the date is the first commit date for loki ;)

Signed-off-by: Goutham Veeramachaneni <gouthamve@gmail.com>

* Fix the config in ksonnet and helm too

Signed-off-by: Goutham Veeramachaneni <gouthamve@gmail.com>
---
 cmd/loki/loki-local-config.yaml          | 2 +-
 production/helm/loki/values.yaml         | 2 +-
 production/ksonnet/loki/config.libsonnet | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmd/loki/loki-local-config.yaml b/cmd/loki/loki-local-config.yaml
index 3962fb37..d4df0735 100644
--- a/cmd/loki/loki-local-config.yaml
+++ b/cmd/loki/loki-local-config.yaml
@@ -13,7 +13,7 @@ ingester:
 
 schema_config:
   configs:
-  - from: 0
+  - from: 2018-04-15
     store: boltdb
     object_store: filesystem
     schema: v9
diff --git a/production/helm/loki/values.yaml b/production/helm/loki/values.yaml
index 10842dda..f5b79ddc 100644
--- a/production/helm/loki/values.yaml
+++ b/production/helm/loki/values.yaml
@@ -42,7 +42,7 @@ config:
     enforce_metric_name: false
   schema_config:
     configs:
-    - from: 0
+    - from: 2018-04-15
       store: boltdb
       object_store: filesystem
       schema: v9
diff --git a/production/ksonnet/loki/config.libsonnet b/production/ksonnet/loki/config.libsonnet
index f27cec44..bb495219 100644
--- a/production/ksonnet/loki/config.libsonnet
+++ b/production/ksonnet/loki/config.libsonnet
@@ -111,7 +111,7 @@
 
       schema_config: {
         configs: [{
-          from: '0',
+          from: '2018-04-15',
           store: 'bigtable',
           object_store: 'gcs',
           schema: 'v9',
-- 
GitLab