Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/joaomlneto/example-devspace-spring-boot
- Owner: joaomlneto
- License: apache-2.0
- Created: 2021-05-07T15:05:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-24T13:34:12.000Z (over 3 years ago)
- Last Synced: 2024-05-02T05:09:15.516Z (7 months ago)
- Topics: 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
- Language: Shell
- Homepage:
- Size: 13.7 KB
- Stars: 4
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!