Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gastaldi/flimsy-oven
Generated by the Red Hat Developer Launcher (https://developers.redhat.com/launch)
https://github.com/gastaldi/flimsy-oven
Last synced: 5 days ago
JSON representation
Generated by the Red Hat Developer Launcher (https://developers.redhat.com/launch)
- Host: GitHub
- URL: https://github.com/gastaldi/flimsy-oven
- Owner: gastaldi
- License: apache-2.0
- Created: 2019-01-30T20:03:06.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-30T20:03:15.000Z (almost 6 years ago)
- Last Synced: 2024-11-08T09:47:37.232Z (about 2 months ago)
- Language: HTML
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Golang Health Check
A booster demonstrating health checks and recovery using the kubernetes/openshift
`liveliness` and `readiness` probes.# How to run
The project uses openshift s2i to build docker image. Run the following command
to build the docker image```s2i build . centos/go-toolset-7-centos7:latest golang-health-check-app```
To start the web service, run
```docker run -p 8080:8080 golang-health-check-app```
The web service should now be accessible on `http://localhost:8080`