We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3cf7f commit 506fbcfCopy full SHA for 506fbcf
1 file changed
rust/stackable-cockpit/src/platform/manifests.rs
@@ -160,6 +160,9 @@ pub trait InstallManifestsExt {
160
Ok(())
161
}
162
163
+ /// This function only handles uninstalling Helm Charts
164
+ ///
165
+ /// To delete objects installed through other manifests use [`Client::delete_namespace`] or [`Client::delete_all_objects_with_label`] instead.
166
#[instrument(skip_all, fields(%namespace, indicatif.pb_show = true))]
167
#[allow(async_fn_in_trait)]
168
async fn uninstall_helm_manifests(
@@ -193,7 +196,9 @@ pub trait InstallManifestsExt {
193
196
},
194
197
)?;
195
198
- ManifestSpec::PlainYaml(_) => {}
199
+ ManifestSpec::PlainYaml(_) => {
200
+ // This function only handles uninstalling Helm Charts
201
+ }
202
203
204
0 commit comments