Kubernetes - Namespaces
Given this ResourceQuota YAML applied to namespace 'test':
apiVersion: v1
kind: ResourceQuota
metadata:
name: test-quota
namespace: test
spec:
hard:
cpu: "4"
memory: 8Gi
pods: "10"
What happens if a pod requesting 5 CPUs is created in 'test' namespace?