https://github.com/tty47/setget
Set & Get API
https://github.com/tty47/setget
Last synced: 3 months ago
JSON representation
Set & Get API
- Host: GitHub
- URL: https://github.com/tty47/setget
- Owner: tty47
- Created: 2023-10-13T18:59:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-15T09:29:43.000Z (over 1 year ago)
- Last Synced: 2024-12-22T03:33:27.124Z (5 months ago)
- Language: Go
- Size: 75.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
The resources in this repo deploys a service to Kubernetes using Helm.
There are two componentes:
- MySQL: We are going to use this service as database.
- SetGet: An API service that has two endpoints:
- `/get`: Returns one of the previously persisted string values (a random one).
- `/set`: Accepts a body value and persists it, the body looks like:
- ```json
{
"item": "value to insert"
}
```
Go to [INSTALLATION.md](./INSTALLATION.md) to install the service in your cluster.---
Jose Ramon Mañes