Skip to content

Latest commit

 

History

History

eureka-server

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Eureka Server

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:

Local Registry

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