staircase 0.0.7

Kubernetes Step-based Operator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Various utils, that are not necessarily required for a step-based
//! operator, but handy in some situations.

#[cfg(feature = "controller")] mod controller;
mod crd;
#[cfg(feature = "resources")] mod resources;

#[cfg(feature = "controller")]
pub use controller::{reconcile_with_finalizer, requeue_on_error};
pub use crd::{UpdateCrdError, update_crd};
#[cfg(feature = "resources")]
pub use resources::{
    ListOneError, get_opt_by_name, identifier_component_label, list_all_by_label, list_one_by_label, service_host,
    service_url,
};