An open API service indexing awesome lists of open source software.

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

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!!!