solti-model 0.0.4

Domain model types for the Solti task execution SDK: task specs, states, and identifiers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Label selectors
//!
//! [`LabelSelector`] is shared by runner routing and task queries.
//! `match_labels` and `match_expressions` are ANDed.

mod requirement;
pub use requirement::SelectorRequirement;

mod operator;
pub use operator::SelectorOperator;

mod label;
pub use label::LabelSelector;