The Mismatch Scenario
In this lesson, first, we will figure out what happens when a Namespace's defined limits are violated and then we will try creating and running Pods directly
Let’s see what happens when resources are defined, but they do not match the Namespace min
and max
limits.
Looking into the Definition
We’ll use the same go-demo-2.yml
we used before.
Press + to interact
cat res/go-demo-2.yml
The output, limited to the relevant parts, is as follows.
Press + to interact
...apiVersion: apps/v1beta2kind: Deploymentmetadata:name: go-demo-2-dbspec:...template:...spec:containers:- name: dbimage: mongo:3.3resources:limits:memory: "100Mi"cpu: 0.1requests:memory: "50Mi"cpu: 0.01...apiVersion: apps/v1beta2kind: Deploymentmetadata:name: go-demo-2-apispec:...template:...spec:containers:- name: api...resources:limits:memory: "10Mi"cpu: 0.1requests:memory: "5Mi"cpu: 0.01...
What matters is that the resources
for both Deployments are defined.
Creating Resources
Let’s create the objects and retrieve the events. They will help us understand better what is happening.
Press + to interact
kubectl --namespace test apply \-f res/go-demo-2.yml \--recordkubectl --namespace test get events -w
The output ...
Access this course and 1400+ top-rated courses and projects.