https://github.com/okteto/oktetodo
Todo list application
https://github.com/okteto/oktetodo
docker-compose helm
Last synced: about 2 months ago
JSON representation
Todo list application
- Host: GitHub
- URL: https://github.com/okteto/oktetodo
- Owner: okteto
- Created: 2023-07-03T05:47:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2026-04-03T08:29:06.000Z (3 months ago)
- Last Synced: 2026-04-03T14:46:19.003Z (3 months ago)
- Topics: docker-compose, helm
- Language: JavaScript
- Homepage:
- Size: 204 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Oktetodo
A todo list application to demonstrate cloud development using Okteto.
## Notes on migrating the app
The application's microservices are packaged as helm charts.
Helm install command:
```
helm upgrade --install db db/chart
helm upgrade --install server server/chart
helm upgrade --install client client/chart
```
Remove the hard coded ingress classname in the `ingress.yaml`. Add the annotation to the ingress to get the endpoints for your application:
```
annotations:
dev.okteto.com/generate-host: "true"
```
Create the `okteto.yaml`.
To build images locally: `docker build -t rinkiyakedad/oktetodo-client --platform=linux/amd64 .`