Hi@akhtar,
A LimitRange resource also called a limit, defines the default, minimum, and maximum values for compute resource requests, and limits for a single pod or for a single container defined inside the project. A resource request or limit for a pod is the sum of its containers.
The following listing shows a limit range defined using YAML syntax.
apiVersion: "v1"
kind: "LimitRange"
metadata:
 name: "dev-limits"
spec:
 limits:
 - type: "Pod"
   max:
     cpu: "500m"
     memory: "750Mi"
   min:
     cpu: "10m"
     memory: "5Mi"
 - type: "Container"
   default:
     cpu: "100m"
     memory: "100Mi"
   max:
     cpu: "500m"
     memory: "750Mi"
   min:
     cpu: "10m"
     memory: "5Mi"