We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ebb8df commit 4f9a515Copy full SHA for 4f9a515
src/deploy/mod.rs
@@ -19,6 +19,11 @@ use crate::configparser::{get_profile_config, ChallengeConfig};
19
use crate::utils::TryJoinAll;
20
21
/// check to make sure that the needed ingress charts are deployed and running
22
+///
23
+/// # Errors
24
+/// If the kubernetes client encounters an error, that error is returned.
25
+/// Otherwise, an error is returned if a chart is either not deployed or
26
+/// in a failed state.
27
pub async fn check_setup(profile: &ProfileConfig) -> Result<()> {
28
let kube = kube_client(profile).await?;
29
let secrets: kube::Api<Secret> = kube::Api::namespaced(kube, cluster_setup::INGRESS_NAMESPACE);
0 commit comments