Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreSpring Cloud Kubernetes provides implementations of well known Spring Cloud interfaces allowing developers to build and run Spring Cloud applications on Kubernetes. While this project may be useful to you when building a cloud native application, it is also not a requirement in order to deploy a Spring Boot app on Kubernetes. If you are just getting started in your journey to running your Spring Boot app on Kubernetes you can accomplish a lot with nothing more than a basic Spring Boot app and Kubernetes itself. To learn more, you can get started by reading the Spring Boot reference documentation for deploying to Kubernetes and also working through the workshop material Spring and Kubernetes.
Kubernetes awareness
DiscoveryClient
implementation
PropertySource
objects configured via ConfigMaps
Client side loadbalancing via Netflix Ribbon
The easiest way to get started is by including the Spring Cloud BOM and then adding spring-cloud-starter-kubernetes-all
to your application’s classpath. If you don’t want to include all of the Spring Cloud Kubernetes features you can add individual starters for the features you would like. By default Spring Cloud Kubernetes will enable the kubernetes
profile when it detects it is running inside a Kubernetes cluster. You can take advantage of this by creating a kubernetes-application
configuration properties for anything specific to Kubernetes you might want to configure. Once the starter is on the classpath the application should behave as any other Spring Cloud application.
Bootstrap your application with Spring Initializr.