Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leandroberetta/version-tracker
https://github.com/leandroberetta/version-tracker
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/leandroberetta/version-tracker
- Owner: leandroberetta
- Created: 2019-01-07T13:40:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-19T15:13:49.000Z (over 4 years ago)
- Last Synced: 2024-11-18T21:03:57.634Z (2 months ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Version Tracker
Application to facilitate the tracking of microservices versions in use.
## Deploy into OpenShift
Create a project
oc new-project tools
Create the MongoDB instance
oc new-app --template=mongodb-persistent -p MONGODB_USER=admin -p MONGODB_PASSWORD=admin -p MONGODB_DATABASE=version -p MONGODB_VERSION=3.6 -p DATABASE_SERVICE_NAME=mongodb -l app=mongodb --name mongodb
Then create the version tracker application
oc create -f version-tracker.yaml
oc new-app --template=version-tracker