-
Hi colleagues, I am using kubernetes/minikube and I've tried to install my application docker image by using a POD configuration yaml file as follow: apiVersion: v1 So far so good but problem starts just when I try to build my pod by executing: When I checkout my POD does show the following error: Soon after I ran: Name: employee-service-pod Normal Scheduled default-scheduler Successfully assigned dev-samples/employee-service-pod to minikube Honestly I have not been able to identify what's causing the Warning and that's why I've decided to share it with you to see if some good eye sees the arcane. I appreciate any help as I am stuck on this since so long I am using minikube v1.11.0 on Linuxmint 19.1. Many thanks in advance guys. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@doviche Not sure what's going on there. You can try check the logs to see if there are any hints, using |
Beta Was this translation helpful? Give feedback.
-
Hi ihscim, Thanks a lot Douglas |
Beta Was this translation helpful? Give feedback.
Hi ihscim,
thanks for getting to me, fortunately I've managed to fix it. The problem was related to restartPolicy. I had the value set to Always instead of OnFailure.
Setting the restartPolicy to OnFailure resolved the issue.
Thanks a lot
Douglas