Deployment Controller not selecting pods with same label – Nginx
I have created a pod using below yaml: apiVersion: v1 kind: Pod metadata: name: pod2 labels: app: dc1 spec: containers: - name: cont1 image: nginx Now, I am creating a deployment controller with the selector value as app=dc1 using the…