in src/utils.rs [629:645]
fn create_test_svc(data: &BTreeMap<String, String>) -> Service {
let input = Service {
metadata: ObjectMeta {
name: "test".to_string().into(),
namespace: "default".to_string().into(),
annotations: Option::from(data.to_owned()),
..Default::default()
},
spec: Option::from(ServiceSpec {
ports: None,
type_: "ClusterIP".to_string().into(),
..Default::default()
}),
status: None,
};
input
}