Question:
Create a pod named httpd-pod and a container under it named as httpd-container, use httpd image with latest tag only and remember to mention tag i.e httpd:latest and set the following limits:
Requests: Memory: 15Mi, CPU: 100m
Limits: Memory: 20Mi, CPU: 100m
Note: The kubectl utility on jump_host has been configured to work with the kubernetes cluster.
pod.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”
Indentation gets messed up while writing this in markdown. This is not getting accepted as a correct solution. Can anyone point out the mistake?
