Voting App Url Not working properly

URL assigned by systm is 127.0.0.0:XXXX series for Result and Voting App while it is not define in any YAML file. Although result-service.yaml and voting-service.yaml giving same result of image which is Voting app.
I am using it in Ubuntu OS with VM minikube.
pod file are-

voting-pod.yaml

apiVersion: v1
kind: Pod
metadata:
name: result-app-pod
labels:
name: result-app-pod
app: demo-voting-app
spec:
containers:
- name: result-app
image: kodekloud/examplevotingapp_result:v1
ports:
- containerPort: 80

voting-pod.yaml

apiVersion: v1
kind: Pod
metadata:
name: voting-app-pod
labels:
name: voting-app-pod
app: demo-voting-app
spec:
containers:
- name: voting-app
image: kodekloud/examplevotingapp_vote:v1
ports:
- containerPort: 80

minikube service voting-service --url
127.0.0.1:33877
:exclamation: Because you are using a Docker driver on linux, the terminal needs to be open to run it.
Voting App

127.0.0.1:43491
:exclamation: Because you are using a Docker driver on linux, the terminal needs to be open to run it.
Output is same as Voting App output.

What can be problem here.Please rectify issue.

This is because you’re using the docker driver with minikube; minikube needs to redirect the URLs to localhost for you. So the link you need to open in the browser is http://127.0.0.1:33877 for the voting service in your case, and http://127.0.0.1:43491 for the results service. Try that and see if it works for you.

Result for both service is same,just like it is pulling same image of Voting Screen,no result image displayed and while I click for Vote it throw error.

  1. Have you tried just pasting in the recommended URLs into your browser, as I suggested?
  2. If you have an “error”, what is the error you’re getting? I’m not clear what you mean.

Also, what kind of computer are you using, in case there are other options for running this exercise?