sk-ctrl 2.7.0

Kubernetes controller for replaying traces in a simulated cluster
1
2
3
4
5
6
7
8
9
10
11
12
use sk_core::errors::*;

err_impl! {SkControllerError,
    #[error("configmap {0} not found")]
    ConfigmapNotFound(String),

    #[error("missing status field: {0}")]
    MissingStatusField(String),

    #[error("namespace {0} not found")]
    NamespaceNotFound(String),
}