Fix resource limits (#110)

This commit is contained in:
gadotroee
2021-07-14 08:33:00 +03:00
committed by GitHub
parent b29b15cf6c
commit 35f9e16e7c

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")
}