Course → Practical Lab assessments → Lab readiness checkpoints
Practical Lab assessments
Kubernetes manifest checkpoint
12 min · Module 1
Pick the right resource types: Deployment for stateless apps, Service for stable networking, Ingress for HTTP routing, ConfigMap/Secret for configuration.
Shell, YAML & config examples
apiVersion: apps/v1
kind: Deployment
metadata:
name: api
spec:
replicas: 3
selector:
matchLabels:
app: api
template:
metadata:
labels:
app: api
spec:
containers:
- name: api
image: myregistry/api:1.2.0
ports:
- containerPort: 8080
livenessProbe:
httpGet:
path: /healthz
port: 8080
Hands-on practice: /lab/scenarios/kubernetes/