Skip to content

Commit

Permalink
Fix ingester PVC data declaration to use configured value
Browse files Browse the repository at this point in the history
  • Loading branch information
rajatvig committed Dec 15, 2020
1 parent e9001d8 commit 3c079bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion production/ksonnet/loki/ingester.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

ingester_data_pvc:: if $._config.stateful_ingesters then
pvc.new('ingester-data') +
pvc.mixin.spec.resources.withRequests({ storage: '10Gi' }) +
pvc.mixin.spec.resources.withRequests({ storage: $._config.ingester_pvc_size }) +
pvc.mixin.spec.withAccessModes(['ReadWriteOnce']) +
pvc.mixin.spec.withStorageClassName($._config.ingester_pvc_class)
else {},
Expand Down

0 comments on commit 3c079bd

Please sign in to comment.