9 unstable releases (3 breaking)

0.4.0 Aug 22, 2024
0.3.3 Aug 20, 2024
0.3.2 Jul 24, 2024
0.3.1 Jun 6, 2024
0.1.1 Jul 14, 2023

#963 in Rust patterns

Download history 2733/week @ 2024-10-24 2525/week @ 2024-10-31 2834/week @ 2024-11-07 2439/week @ 2024-11-14 1997/week @ 2024-11-21 1761/week @ 2024-11-28 1761/week @ 2024-12-05 1764/week @ 2024-12-12 917/week @ 2024-12-19 990/week @ 2024-12-26 1576/week @ 2025-01-02 2089/week @ 2025-01-09 2117/week @ 2025-01-16 2435/week @ 2025-01-23 2098/week @ 2025-01-30 4943/week @ 2025-02-06

11,901 downloads per month

Apache-2.0

24KB
338 lines

k8s-controller

This crate implements a lightweight framework around kube_runtime::Controller which provides a simpler interface for common controller patterns. To use it, you define the data that your controller is going to operate over, and implement the Context trait on that struct:

#[derive(Default, Clone)]
struct PodCounter {
    pods: Arc<Mutex<BTreeSet<String>>>,
}

impl PodCounter {
    fn pod_count(&self) -> usize {
        let mut pods = self.pods.lock().unwrap();
        pods.len()
    }
}

#[async_trait::async_trait]
impl k8s_controller::Context for PodCounter {
    type Resource = Pod;
    type Error = kube::Error;

    const FINALIZER_NAME: &'static str = "example.com/pod-counter";

    async fn apply(
        &self,
        client: Client,
        pod: &Self::Resource,
    ) -> Result<Option<Action>, Self::Error> {
        let mut pods = self.pods.lock().unwrap();
        pods.insert(pod.meta().uid.as_ref().unwrap().clone());
        Ok(None)
    }

    async fn cleanup(
        &self,
        client: Client,
        pod: &Self::Resource,
    ) -> Result<Option<Action>, Self::Error> {
        let mut pods = self.pods.lock().unwrap();
        pods.remove(pod.meta().uid.as_ref().unwrap());
        Ok(None)
    }
}

Then you can run it against your Kubernetes cluster by creating a Controller:

let kube_config = Config::infer().await.unwrap();
let kube_client = Client::try_from(kube_config).unwrap();
let context = PodCounter::default();
let controller = k8s_controller::Controller::namespaced_all(
    kube_client,
    context.clone(),
    ListParams::default(),
);
task::spawn(controller.run());

loop {
    println!("{} pods running", context.pod_count());
    sleep(Duration::from_secs(1));
}

Dependencies

~60MB
~1M SLoC