You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
383 B

# LimitRange for default resource limits per container
# Ensures containers have resource requests/limits even if not specified
apiVersion: v1
kind: LimitRange
metadata:
name: gitrepublic-limits
namespace: gitrepublic-tenant-${TENANT_ID}
spec:
limits:
- default:
cpu: "1"
memory: 1Gi
defaultRequest:
cpu: "500m"
memory: 512Mi
type: Container