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
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
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.