Hello, In the kubernetes for beginners course, the minikube service command doe . . .

Dapo Michaels:
Hello, In the kubernetes for beginners course, the minikube service command does not show me the url with the port I specified in the service file, it shows a totally random port

Tej_Singh_Rana:
Please share the details of your service.

Dapo Michaels:
@Tej_Singh_Rana

apiVersion: v1
kind: Service
metadata:
  name: voting-service
  labels:
    name: voting-service
    app: voting-app
spec:
  type: NodePort
  ports:
    - port: 80
      targetPort: 80
      nodePort: 30004
  selector:
    name: voting-app-pod
    app: voting-app