Kubernetes - Namespaces
Given this LimitRange YAML applied in a namespace:
What happens if a pod container is created without specifying memory requests or limits?
apiVersion: v1
kind: LimitRange
metadata:
name: mem-limit
spec:
limits:
- default:
memory: "512Mi"
type: ContainerWhat happens if a pod container is created without specifying memory requests or limits?
