Kubernetes level 1 task 7 Deploy Replica Set in Kubernetes Cluster is getting failed in spite giving proper inputs.
replicaset.yaml
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: httpd-replicaset
spec:
template:
metadata:
labels:
app: httpd_app
type: front-end
spec:
containers:
- name: httpd-container
image: httpd:latest
replicas: 4
selector:
matchLabels:
type: front-end
app: httpd_app
Error:
I am getting Labels ‘type’ is not set to ‘front-end’ and Labels ‘app’ is not set to ‘httpd_app’