Edith Puclla:
Hi!
I have this question.
Create a service for pod magic on using ClusterIP type service with service name magic. Map service port 8080 to container port 80.
My Solution:
kubectl expose pod magic --name=magic-expose --port=8080 --target-port=80
Is this good or I am missing something?