Kubernetes - Namespaces
Given this LimitRange YAML applied in a namespace:
What will be the memory request for a container without any memory request specified?
apiVersion: v1
kind: LimitRange
metadata:
name: mem-default
spec:
limits:
- default:
memory: 256Mi
type: ContainerWhat will be the memory request for a container without any memory request specified?
