go run main.gogo build -o my-rest.bin
docker build -t 192.168.98.100:5000/my-rest:latest .
docker push 192.168.98.100:5000/my-rest:latest
kubectl run my-rest --image=192.168.98.100:5000/my-rest:latest --port=8080
kubectl expose deployment my-rest --type=LoadBalancerminikube service my-restMore example at The New Stack article and its code repository here