Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 400 Bytes

File metadata and controls

25 lines (23 loc) · 400 Bytes

Deployment Challenge

Below is a malfunctioning deployment manifest! Do your best to get it working!

apiVersion: v1
kind: deployment
metadata:
  name: challenge
  labels:
    app=nginx
spec:
selector:
    matchLabels:
      app: nginx
replicas: 3
template:
    metadata:
    spec:
      containers:
      - name: nginx
      image: nginxx:1.18.0
      ports:
      - containerPort: 80