A Eureka Server for testing the new Spring Cloud Gateway
First you need to compile this project:
$ mvnw clean package
Before continue you need to have your local registry running on the cluster:
Then, build the docker image and push it to a local registry
$ docker build . -t eureka-server
$ docker tag eureka-server localhost:5000/eureka-server
$ docker push localhost:5000/eureka-server
And finally add it to the kubernetes cluster with:
$ kubectl create -f eureka-server-deploy.yml
Now we could see the Eureka Server in our browser with:
$ minikube service eureka-server