Kubernetes - ReplicaSets and Deployments
Why will this ReplicaSet YAML fail to create pods?
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: fail-rs
spec:
replicas: 2
selector:
matchLabels:
app: fail
template:
metadata:
labels:
app: frontend
tier: frontend
spec:
containers:
- name: app
image: busybox
command: ["sleep", "3600"]
