Which kubectl command updates the image of a container named 'web' in a Deployment named 'frontend' to 'nginx:1.25'?
-
A
kubectl edit deployment frontend --image nginx:1.25
-
B
kubectl set image deployment/frontend web=nginx:1.25
-
C
kubectl update deployment frontend --container web --image nginx:1.25
-
D
kubectl patch deployment frontend --image web=nginx:1.25