Compare commits

..

1 Commits

Author SHA1 Message Date
gadotroee
35f9e16e7c Fix resource limits (#110) 2021-07-14 08:33:00 +03:00

View File

@@ -77,7 +77,7 @@ func (provider *Provider) CreateMizuAggregatorPod(ctx context.Context, namespace
return nil, err
}
cpuLimit, err := resource.ParseQuantity("750")
cpuLimit, err := resource.ParseQuantity("750m")
if err != nil {
return nil, errors.New("invalid cpu limit for aggregator container")
}