thor@jumphost ~$ kubectl get pods
NAME READY STATUS RESTARTS AGE
httpd-pod 0/1 ErrImagePull 0 5s
thor@jumphost ~$ cat resourcelimits.yaml
apiVersion: v1
kind: Pod
metadata:
name: httpd-pod
spec:
containers:
- name: httpd-container
image: httpd:latest
resources:
requests:
memory: “15Mi”
cpu: “100m”
limits:
memory: “20Mi”
cpu: “100m”
Once after deploying the pod using image details : “httpd:latest”, I am facing issues with ErrImagePull Issue.