k8p 0.4.10

A cli tool for inspecting containers in Kubernetes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
```
# you've presumably populated the db with metrics so export them
# to an N-Triples serialized RDF file.
cargo run -- export-triples # make an nt file
cargo run -- export-turtle  # make a ttl file
# setup a python virtual environment
python3 -m venv venv
source ./venv/bin/activate
pip install rdflib
# run sparql queries
python ./examples/rdf_nt_query.py
python ./examples/rdf_ttl_query.py
```