chrore: add srvc info to check data

This commit is contained in:
Jesús Pérez Lorenzo 2021-10-12 11:16:54 +01:00
parent f41c88a465
commit 57378e546b
2 changed files with 9 additions and 3 deletions

View File

@ -282,12 +282,13 @@ impl Cloud {
pub struct TsksrvcInfo { pub struct TsksrvcInfo {
pub name: String, pub name: String,
pub info: serde_yaml::Value, pub info: serde_yaml::Value,
pub srvc: TskSrvc,
} }
#[derive(Clone, Debug, Serialize, Deserialize, Default)] #[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct AppsrvcInfo { pub struct AppsrvcInfo {
pub name: String, pub name: String,
pub target: String,
pub info: serde_yaml::Value, pub info: serde_yaml::Value,
pub srvc: App,
} }
#[derive(Clone, Debug, Serialize, Deserialize, Default)] #[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct SrvcsHostInfo { pub struct SrvcsHostInfo {

View File

@ -269,6 +269,7 @@ pub async fn parse_srvr_tsksrvcs(hostname: &str, sshaccess: &SSHAccess, tsksrvcs
eprintln!("run_ssh_on_srvr os: {}",e); eprintln!("run_ssh_on_srvr os: {}",e);
serde_yaml::Value::default() serde_yaml::Value::default()
}), }),
srvc: TskSrvc::default(),
}); });
}, },
"floatip" => { "floatip" => {
@ -280,6 +281,7 @@ pub async fn parse_srvr_tsksrvcs(hostname: &str, sshaccess: &SSHAccess, tsksrvcs
eprintln!("run_ssh_on_srvr floatip: {}",e); eprintln!("run_ssh_on_srvr floatip: {}",e);
serde_yaml::Value::default() serde_yaml::Value::default()
}), }),
srvc: TskSrvc::default(),
}); });
}, },
"kubernetes_pods" => { "kubernetes_pods" => {
@ -291,6 +293,7 @@ pub async fn parse_srvr_tsksrvcs(hostname: &str, sshaccess: &SSHAccess, tsksrvcs
eprintln!("run_ssh_on_srvr kubernetes_pods: {}",e); eprintln!("run_ssh_on_srvr kubernetes_pods: {}",e);
serde_yaml::Value::default() serde_yaml::Value::default()
}), }),
srvc: TskSrvc::default(),
}); });
}, },
_ => { continue; } _ => { continue; }
@ -314,6 +317,7 @@ pub async fn parse_srvr_tsksrvcs(hostname: &str, sshaccess: &SSHAccess, tsksrvcs
eprintln!("run_ssh_on_srvr for {}: {}",&tsksrvc.name,e); eprintln!("run_ssh_on_srvr for {}: {}",&tsksrvc.name,e);
serde_yaml::Value::default() serde_yaml::Value::default()
}), }),
srvc: tsksrvc.to_owned(),
}); });
} }
} }
@ -358,6 +362,7 @@ pub async fn liveness_srvr_tsksrvcs(source: &str, cntrllrs: &Vec<Cntrllr>, tsksr
eprintln!("Serde liveness Error: {} {} -> {}",&source,&serverstring,e); eprintln!("Serde liveness Error: {} {} -> {}",&source,&serverstring,e);
serde_yaml::Value::default() serde_yaml::Value::default()
}), }),
srvc: tsksrvc.to_owned(),
}); });
}, },
} }
@ -378,7 +383,7 @@ pub async fn parse_srvr_appsrvcs(hostname: &str, sshaccess: &SSHAccess, appsrvcs
eprintln!("run_ssh_on_srvr for {}: {}",&appsrvc.name,e); eprintln!("run_ssh_on_srvr for {}: {}",&appsrvc.name,e);
serde_yaml::Value::default() serde_yaml::Value::default()
}), }),
target: format!("{}",&appsrvc.target), srvc: appsrvc.to_owned(),
}); });
} }
} }
@ -422,7 +427,7 @@ pub async fn liveness_srvr_appsrvcs(source: &str, cntrllrs: &Vec<Cntrllr>, appsr
eprintln!("Serde liveness Error: {} {} -> {}",&source,&serverstring,e); eprintln!("Serde liveness Error: {} {} -> {}",&source,&serverstring,e);
serde_yaml::Value::default() serde_yaml::Value::default()
}), }),
target: format!("{}",&appsrvc.target), srvc: appsrvc.to_owned(),
}); });
// }, // },
// } // }