https://github.com/springerpe/bosh-release-dep
Simple CLI tool to visualise job and package dependencies within a bosh release
https://github.com/springerpe/bosh-release-dep
Last synced: about 1 year ago
JSON representation
Simple CLI tool to visualise job and package dependencies within a bosh release
- Host: GitHub
- URL: https://github.com/springerpe/bosh-release-dep
- Owner: SpringerPE
- Created: 2017-03-16T16:24:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T16:35:08.000Z (about 9 years ago)
- Last Synced: 2025-01-14T04:44:37.850Z (over 1 year ago)
- Language: Go
- Size: 165 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bosh Release Dependencies
## Description
Simple tool written in go to print a graphviz compatible dot file describing the dependencies between jobs and packages in a boshrelease
## Installation
go get github.com/SpringerPE/bosh-release-dep
## Usage
```
bosh-release-dep path-to-the-boshrelease-folder > dependencies.dot
```
In order to visualise the graph install graphviz and render the image:
```
bosh-release-dep path-to-the-boshrelease-folder | dot -Tpng -o dep.png
```
Enjoy!!!