Complete the code to select pods with the label app=frontend.
selector:
matchLabels:
app: [1]The selector uses the label app=frontend to route traffic to frontend pods.
Complete the service selector to route traffic to pods with label tier=backend.
selector:
tier: [1]The service selector uses tier=backend to route traffic to backend pods.
Fix the error in the selector to correctly route to pods with label env=production.
selector:
env: [1]The selector must use env=production to route traffic to production pods.
Fill both blanks to route traffic to pods with labels app=api and version=v2.
selector: app: [1] version: [2]
The selector uses app=api and version=v2 to route traffic to the correct pods.
Fill all three blanks to create a selector for pods with labels role=frontend, env=prod, and track=stable.
selector: role: [1] env: [2] track: [3]
The selector uses role=frontend, env=prod, and track=stable to route traffic correctly.