k8_types/crd.rs
1//!
2//! # CRD Definition
3//!
4//! Interface to the CRD header definition in K8 key value store
5//!
6#[derive(Debug)]
7pub struct Crd {
8 pub group: &'static str,
9 pub version: &'static str,
10 pub names: CrdNames,
11}
12
13#[derive(Debug)]
14pub struct CrdNames {
15 pub kind: &'static str,
16 pub plural: &'static str,
17 pub singular: &'static str,
18}
19
20pub const GROUP: &str = "fluvio.infinyon.com";
21pub const V1: &str = "v1";