diff --git a/cmd/loki/loki-local-config.yaml b/cmd/loki/loki-local-config.yaml
index 523a854bc48b2d88531702b9f8e23cf4d066e1bb..4e6978c494864c3efee9ed5f0c504635e8caa16b 100644
--- a/cmd/loki/loki-local-config.yaml
+++ b/cmd/loki/loki-local-config.yaml
@@ -34,3 +34,18 @@ limits_config:
 
 chunk_store_config:
   max_look_back_period: 0
+
+table_manager:
+  chunk_tables_provisioning:
+    inactive_read_throughput: 0
+    inactive_write_throughput: 0
+    provisioned_read_throughput: 0
+    provisioned_write_throughput: 0
+  index_tables_provisioning:
+    inactive_read_throughput: 0
+    inactive_write_throughput: 0
+    provisioned_read_throughput: 0
+    provisioned_write_throughput: 0
+  retention_deletes_enabled: false
+  retention_period: 0
+
diff --git a/production/helm/loki-stack/Chart.yaml b/production/helm/loki-stack/Chart.yaml
index 750056bc701690d27b0b57f9983885a9f2d5f437..1f5b69491bfb354b60c13f79882269edeb925837 100644
--- a/production/helm/loki-stack/Chart.yaml
+++ b/production/helm/loki-stack/Chart.yaml
@@ -1,5 +1,5 @@
 name: loki-stack
-version: 0.9.4
+version: 0.9.5
 appVersion: 0.0.1
 kubeVersion: "^1.10.0-0"
 description: "Loki: like Prometheus, but for logs."
diff --git a/production/helm/loki/Chart.yaml b/production/helm/loki/Chart.yaml
index a19a980521a6eea6f2e94a484912eb8d0bb26605..13795ee04db86977c73d099335f645b89412a94e 100644
--- a/production/helm/loki/Chart.yaml
+++ b/production/helm/loki/Chart.yaml
@@ -1,5 +1,5 @@
 name: loki
-version: 0.8.3
+version: 0.8.4
 appVersion: 0.0.1
 kubeVersion: "^1.10.0-0"
 description: "Loki: like Prometheus, but for logs."
diff --git a/production/helm/loki/values.yaml b/production/helm/loki/values.yaml
index 1cbfff557c99c502b6a058967a9681746c15951c..55eed6279190ee6eee9cbe78d1ef523e62479872 100644
--- a/production/helm/loki/values.yaml
+++ b/production/helm/loki/values.yaml
@@ -59,6 +59,9 @@ config:
       directory: /data/loki/chunks
   chunk_store_config:
     max_look_back_period: 0
+  table_manager:
+    retention_deletes_enabled: false
+    retention_period: 0
 
 deploymentStrategy: RollingUpdate
 
diff --git a/production/ksonnet/loki/config.libsonnet b/production/ksonnet/loki/config.libsonnet
index 8960bc4ebe3aaa33b107441dbd86c2c9d2b2d8cc..b1dd463c98450c6a60eeaacf9f6ea74dfe8fd7d0 100644
--- a/production/ksonnet/loki/config.libsonnet
+++ b/production/ksonnet/loki/config.libsonnet
@@ -108,6 +108,7 @@
             service: 'memcached-client',
           },
         },
+        max_look_back_period: 0,
       },
 
       schema_config: {
@@ -122,6 +123,23 @@
           },
         }],
       },
+
+      table_manager: {
+        retention_period: 0,
+        retention_deletes_enabled: false,
+        index_tables_provisioning: {
+          inactive_read_throughput: 0,
+          inactive_write_throughput: 0,
+          provisioned_read_throughput: 0,
+          provisioned_write_throughput: 0,
+        },
+        chunk_tables_provisioning: {
+          inactive_read_throughput: 0,
+          inactive_write_throughput: 0,
+          provisioned_read_throughput: 0,
+          provisioned_write_throughput: 0,
+        },
+      },
     },
   },
 
diff --git a/production/ksonnet/loki/images.libsonnet b/production/ksonnet/loki/images.libsonnet
index 4f9f9250432db18e70fecf88ce99c8b3c8480d5c..a33db7e6311302f63b662fc85c1e495960217ef2 100644
--- a/production/ksonnet/loki/images.libsonnet
+++ b/production/ksonnet/loki/images.libsonnet
@@ -4,13 +4,11 @@
     memcached: 'memcached:1.5.6-alpine',
     memcachedExporter: 'prom/memcached-exporter:v0.4.1',
 
-    // Our services.
-    tableManager: 'grafana/cortex-table-manager:r56-bd83f04a',
-
     loki: 'grafana/loki:latest',
 
     distributor: self.loki,
     ingester: self.loki,
     querier: self.loki,
+    tableManager: self.loki,
   },
 }
diff --git a/production/ksonnet/loki/table-manager.libsonnet b/production/ksonnet/loki/table-manager.libsonnet
index cef85e9dd1adbeadc8da68a13d62b757bf43edf1..51c41c1407e4af226edaab66f1498458fb6293e0 100644
--- a/production/ksonnet/loki/table-manager.libsonnet
+++ b/production/ksonnet/loki/table-manager.libsonnet
@@ -1,27 +1,9 @@
 {
   local container = $.core.v1.container,
 
-  table_manager_args:: {
-    'bigtable.project': $._config.bigtable_project,
-    'bigtable.instance': $._config.bigtable_instance,
-    'chunk.storage-client': $._config.storage_backend,
-
-    'dynamodb.original-table-name': '%s_index' % $._config.table_prefix,
-    'dynamodb.use-periodic-tables': true,
-    'dynamodb.periodic-table.prefix': '%s_index_' % $._config.table_prefix,
-    'dynamodb.chunk-table.prefix': '%s_chunks_' % $._config.table_prefix,
-    'dynamodb.periodic-table.from': $._config.schema_start_date,
-    'dynamodb.chunk-table.from': $._config.schema_start_date,
-    'dynamodb.v9-schema-from': $._config.schema_start_date,
-    // Cassandra / BigTable doesn't use these fields, so set them to zero
-    'dynamodb.chunk-table.inactive-read-throughput': 0,
-    'dynamodb.chunk-table.inactive-write-throughput': 0,
-    'dynamodb.chunk-table.read-throughput': 0,
-    'dynamodb.chunk-table.write-throughput': 0,
-    'dynamodb.periodic-table.inactive-read-throughput': 0,
-    'dynamodb.periodic-table.inactive-write-throughput': 0,
-    'dynamodb.periodic-table.read-throughput': 0,
-    'dynamodb.periodic-table.write-throughput': 0,
+  table_manager_args::
+  $._config.commonArgs {
+    target: 'table-manager',
   },
 
   table_manager_container::
@@ -34,7 +16,9 @@
   local deployment = $.apps.v1beta1.deployment,
 
   table_manager_deployment:
-    deployment.new('table-manager', 1, [$.table_manager_container]),
+    deployment.new('table-manager', 1, [$.table_manager_container]) +
+    $.config_hash_mixin +
+    $.util.configVolumeMount('loki', '/etc/loki'),
 
   table_manager_service:
     $.util.serviceFor($.table_manager_deployment),