From 3fd696d6b56fdddcc9593d647c49a31363259829 Mon Sep 17 00:00:00 2001 From: Matt Hook Date: Mon, 6 Nov 2023 13:32:14 +1300 Subject: [PATCH] switch to filter after upgrading helm binary (#10596) --- app/kubernetes/views/applications/helm/helm.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/kubernetes/views/applications/helm/helm.controller.js b/app/kubernetes/views/applications/helm/helm.controller.js index 431589398..0b027c2ef 100644 --- a/app/kubernetes/views/applications/helm/helm.controller.js +++ b/app/kubernetes/views/applications/helm/helm.controller.js @@ -16,7 +16,7 @@ export default class KubernetesHelmApplicationController { async getHelmApplication() { try { this.state.dataLoading = true; - const releases = await this.HelmService.listReleases(this.endpoint.Id, { selector: `name=${this.state.params.name}`, namespace: this.state.params.namespace }); + const releases = await this.HelmService.listReleases(this.endpoint.Id, { filter: `^${this.state.params.name}$`, namespace: this.state.params.namespace }); if (releases.length > 0) { this.state.release = releases[0]; } else {