fix comments
Some checks failed
Run Check Script / check (pull_request) Failing after 46s

This commit is contained in:
tahahawa 2025-07-02 12:05:42 -04:00
parent 9172da1d16
commit bed814837c
2 changed files with 3 additions and 1 deletions

View File

@ -54,7 +54,8 @@ impl K8sClient {
} }
} }
pub async fn exec_pod( /// Will execute a command in the first pod found that matches the label `app.kubernetes.io/name={name}`
pub async fn exec_app(
&self, &self,
name: String, name: String,
namespace: Option<&str>, namespace: Option<&str>,

View File

@ -118,6 +118,7 @@ impl NtfyInterpret {
} }
} }
/// We need a ntfy interpret to wrap the HelmChartScore in order to run the score, and then bootstrap the config inside ntfy
#[async_trait] #[async_trait]
impl<T: Topology + HelmCommand + K8sclient> Interpret<T> for NtfyInterpret { impl<T: Topology + HelmCommand + K8sclient> Interpret<T> for NtfyInterpret {
async fn execute( async fn execute(