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"Related notes#
- Time Check Pod — a Pod that adds a ConfigMap and a mounted volume
- Pod ImagePullBackOff Troubleshooting — diagnosing a Pod that won’t start

