Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itaysk/kbom-tools
https://github.com/itaysk/kbom-tools
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/itaysk/kbom-tools
- Owner: itaysk
- Created: 2023-10-25T15:00:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-05T15:11:37.000Z (11 months ago)
- Last Synced: 2023-12-05T20:01:48.998Z (11 months ago)
- Language: JavaScript
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KBOM Tools
Tools and experiments related to [Trivy KBOM (Kubernetes Bill of Materials)](https://aquasecurity.github.io/trivy/v0.46/docs/target/kubernetes/#kbom).
The [Makefile](/Makefile) in this repo provides a quick way to experiment:
```
make .[json|dot|dot.svg|mmd|mmd.svg] IN=
```## Simpler KBOM
Trivy's KBOM is designed around [CycloneDX](https://cyclonedx.org/docs/1.5/json/) which is highly normalized data model. This makes it good for data longevity but at the same time not less user friendly. In order to make KBOM simpler to read and consume, and more closely aligned with the mental model of Kubernetes users, we convert it to a simpler model:
- cluster information fields
- control plane
- nodes
- components
- nodes
- componentsTo convert a Trivy KBOM file `my.cdx.json` into Simple KBOM file called `my.skbom.json`:
```
make my.skbom.json IN=my.cdx.json
```## Graphviz dot
To convert a "Simple KBOM" file `my.skbom.json` into [GraphViz](https://graphviz.org) [dot](https://graphviz.org/doc/info/lang.html) called `my.skbom.dot`:
```
make my.skbom.dot IN=my.cdx.json
```You can also generate an SVG image:
```
make my.skbom.dot.svg IN=my.skbom.json
```## Mermaid JS Flowchart
To convert "Simple KBOM" file `my.skbom.json` into [Mermaid](https://mermaid.js.org) [Flowchart](https://mermaid.js.org/syntax/flowchart.html) called `my.skbom.mmd`:
```
make mmd IN=my.skbom.json
```You can also generate an SVG image:
```
make my.skbom.mmd.svg IN=my.skbom.json
```![mermaid example](./test/test1.skbom.mmd.svg)