In this project I'm demonstrating you the most interesting features of Spring Cloud Project for building microservice-based architecture that is deployed on Kubernetes. All the samples may be easily deployed on local Kubernetes single-node cluster - Minikube.
- Download and run Minikube using command:
minikube start --vm-driver=virtualbox --memory='4000mb'
- Build Maven project with using command:
mvn clean install
- Build Docker images for each module using command, for example:
docker build -t piomin/employee:1.1 .
- Go to
/kubernetes
directory in repository - Apply all templates to Minikube using command:
kubectl apply -f <filename>.yaml
- Check status with
kubectl get pods
Our sample microservices-based system consists of the following modules:
- gateway-service - a module that Spring Cloud Netflix Zuul for running Spring Boot application that acts as a proxy/gateway in our architecture.
- employee-service - a module containing the first of our sample microservices that allows to perform CRUD operation on Mongo repository of employees
- department-service - a module containing the second of our sample microservices that allows to perform CRUD operation on Mongo repository of departments. It communicates with employee-service.
- organization-service - a module containing the third of our sample microservices that allows to perform CRUD operation on Mongo repository of organizations. It communicates with both employee-service and department-service.
- admin-service - a module containing embedded Spring Boot Admin Server used for monitoring Spring Boot microservices running on Kubernetes The following picture illustrates the architecture described above including Kubernetes objects.
You can distribute applications across multiple namespaces and use Spring Cloud Kubernetes DiscoveryClient
and Ribbon
for inter-service communication.
Go to the k8s
directory. You will find there several YAML scripts you need to apply before running applications.
privileges.yaml
-Role
andRoleBinding
for Spring Cloud Kubernetes to allow access Kubernetes API from podmongo-secret.yaml
- credentials for MongoDBmongo-configmap.yaml
- user for MongoDBmongo-deployment.yaml
-Deployment
for MongoDB Just apply those scripts usingkubectl apply
.
You can easily deploy all applications using skaffold dev
command.