1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//!
//! # CRD Definition
//!
//! Interface to the CRD header definition in K8 key value store
//!
#[derive(Debug)]
pub struct Crd {
    pub group: &'static str,
    pub version: &'static str,
    pub names: CrdNames,
}

#[derive(Debug)]
pub struct CrdNames {
    pub kind: &'static str,
    pub plural: &'static str,
    pub singular: &'static str,
}

pub const GROUP: &str = "fluvio.infinyon.com";
pub const V1: &str = "v1";