apiVersion: apps/v1 kind: Deployment metadata: name: web-deployment namespace: visitor-app spec: replicas: 1 selector: matchLabels: app: web-app template: metadata: labels: app: web-app spec: containers: - name: web-container image: web:latest imagePullPolicy: IfNotPresent #same thing uses local image if any ports: - containerPort: 80