Skip to content

Commit

Permalink
feat: remove cpu limit default (#1163)
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Ribeiro <j.ribeiro.fafe@gmail.com>
  • Loading branch information
jrRibeiro committed Jul 13, 2023
1 parent f0f2893 commit bd98817
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions controllers/reconcilers/grafana/deployment_reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const (
MemoryRequest = "256Mi"
CpuRequest = "100m"
MemoryLimit = "1024Mi"
CpuLimit = "500m"
GrafanaHealthEndpoint = "/api/health"
ReadinessProbeFailureThreshold int32 = 1
ReadinessProbeInitialDelaySeconds int32 = 5
Expand Down Expand Up @@ -71,7 +70,6 @@ func getResources() v1.ResourceRequirements {
},
Limits: v1.ResourceList{
v1.ResourceMemory: resource.MustParse(MemoryLimit),
v1.ResourceCPU: resource.MustParse(CpuLimit),
},
}
}
Expand Down

0 comments on commit bd98817

Please sign in to comment.