Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joaomlneto/example-devspace-spring-boot

Example using Devspace to develop a Spring Boot Application on Kubernetes
https://github.com/joaomlneto/example-devspace-spring-boot

cloud-native containerization dev developer-tool developer-tools development development-environment devops devspace devtools docker helm kaniko kubernetes kubernetes-deployment kubernetes-native remote-development remote-devtools spring-boot spring-boot-kubernetes

Last synced: 10 days ago
JSON representation

Example using Devspace to develop a Spring Boot Application on Kubernetes

Awesome Lists containing this project

README

        

# Java Spring Kubernetes Example With [DevSpace](https://devspace.sh/)
Take a look at [`devspace.yaml`](./devspace.yaml) to see how DevSpace is configured to work with this project.

## Quickstart

1. Choose a Kubernetes namespace to work with:
```bash
devspace use namespace my-spring-app
```

2. Start Development
```bash
devspace dev
```

3. Start App (inside container terminal)
```bash
mvn spring-boot:run
```

4. Happy Coding!