Skip to content

piomin/sample-spring-boot-on-kubernetes

Folders and files

NameName
Last commit message
Last commit date
Jan 26, 2025
Oct 18, 2020
Nov 28, 2023
Nov 28, 2023
Dec 9, 2021
Oct 18, 2020
Oct 15, 2023
Nov 10, 2020
Dec 9, 2021
Jun 15, 2020
Apr 3, 2025
Jan 12, 2023
Jan 7, 2023
Feb 17, 2023

Repository files navigation

Spring Boot on Kubernetes Demo Project Twitter

CircleCI

SonarCloud Bugs Coverage Lines of Code

In this project I'm demonstrating different mechanisms of deploying application on Kubernetes. The example application application is simple Spring Boot app that exposes some HTTP endpoints for CRUD operations and connects to MongoDB on cluster.

Getting Started

Currently you may find here some examples of different techniques of deploying this application on Kubernetes. All the examples are described in a separated articles on my blog. Here's a full list of available examples:

  1. Using Okteto Cloud Platform - Kubernetes for Developers. A detailed guide may be find in the following article: Development on Kubernetes with Okteto and Spring Boot

Mongo on Docker:

$ docker run --name mongodb -d -p 27017:27017 \
  -e MONGO_INITDB_ROOT_USERNAME=springboot \
  -e MONGO_INITDB_ROOT_PASSWORD=springboot123 \
  -e MONGO_INITDB_DATABASE=springboot \
  mongo:latest

Mongo for OpenShift:

$ oc new-app https://raw.githubusercontent.com/openshift/origin/master/examples/db-templates/mongodb-ephemeral-template.json