kubewatch

Crates.iokubewatch
lib.rskubewatch
version0.9.2
sourcesrc
created_at2017-02-13 22:24:07.452446
updated_at2017-03-08 16:52:27.150593
descriptionThis library serves as a base component for Kubernetes event watching.
homepagehttps://github.com/phoracek/kubewatch
repositoryhttps://github.com/phoracek/kubewatch
max_upload_size
id8508
size9,078
Petr Horacek (phoracek)

documentation

https://docs.rs/kubewatch

README

Kubewatch

Build Status crates.io docs.rs

This library serves as a base component for Kubernetes event watching. It allows user to specify which resource should be monitored. Deserialization of events is done via Serde, thanks to it it is possible to use both dynamic on-the-fly deserialization and also beforehand generated Deserializer for specific structure.

Documentation

Example

extern crate kubewatch;
extern crate serde_json;

use kubewatch::Events;

fn main() {
    let cluster = kubewatch::Cluster::new("http://localhost:8080").unwrap();
    let events = cluster.events::<serde_json::Value>("api/v1/pods").unwrap();
    for event in events.into_iter() {
        println!("{:#?}", event);
    }
}

Check for more in examples/.

TODO

  • namespaces
  • TLS/SSL
  • filtering
Commit count: 10

cargo fmt