operator: Modify ingestionRate for respective shirt size (#7617)

pull/7654/head
Gerard Vanloo 4 years ago committed by GitHub
parent a6df09bc97
commit 764ee7c3bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      operator/CHANGELOG.md
  2. 4
      operator/internal/manifests/internal/sizes.go

@ -1,5 +1,6 @@
## Main
- [7617](https://github.com/grafana/loki/pull/7617) **Red-GV**: Modify ingestionRate for respective shirt size
- [7592](https://github.com/grafana/loki/pull/7592) **aminesnow**: Update API docs generation using gen-crd-api-reference-docs
- [7448](https://github.com/grafana/loki/pull/7448) **periklis**: Add TLS support for compactor delete client
- [7596](https://github.com/grafana/loki/pull/7596) **periklis**: Fix fresh-installs with built-in cert management enabled

@ -262,7 +262,7 @@ var StackSizeTable = map[lokiv1.LokiStackSizeType]lokiv1.LokiStackSpec{
Global: &lokiv1.LimitsTemplateSpec{
IngestionLimits: &lokiv1.IngestionLimitSpec{
// Custom for 1x.small
IngestionRate: 10,
IngestionRate: 15,
IngestionBurstSize: 20,
MaxGlobalStreamsPerTenant: 10000,
// Defaults from Loki docs
@ -315,7 +315,7 @@ var StackSizeTable = map[lokiv1.LokiStackSizeType]lokiv1.LokiStackSpec{
Global: &lokiv1.LimitsTemplateSpec{
IngestionLimits: &lokiv1.IngestionLimitSpec{
// Custom for 1x.medium
IngestionRate: 10,
IngestionRate: 50,
IngestionBurstSize: 20,
MaxGlobalStreamsPerTenant: 25000,
// Defaults from Loki docs

Loading…
Cancel
Save