Kubernetes - ReplicaSets and Deployments
Identify the error in this Deployment YAML snippet:
apiVersion: apps/v1
kind: Deployment
metadata:
name: myapp
spec:
replicas: 2
selector:
matchLabels:
app: myapp
template:
metadata:
labels:
app: myapp
spec:
container:
- name: myapp-container
image: myapp:1.0