Skip to content

Commit

Permalink
fix: Fix daemonset search by search string
Browse files Browse the repository at this point in the history
  • Loading branch information
tiithansen committed Jun 11, 2024
1 parent 57c72b7 commit 06f5b00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/Workloads/tabs/DaemonSets/DaemonSets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,9 @@ class DaemonSetsQueryBuilder implements QueryBuilder<TableRow> {
expr: `
group(
${Metrics.kubeDaemonSetCreated.name}{
${Metrics.kubeDaemonSetCreated.labels.namespace}=~"$namespace",
${Metrics.kubeDaemonSetCreated.labels.daemonset}=~".*$search.*",
cluster="$cluster",
${Metrics.kubeDaemonSetCreated.labels.namespace}=~"$namespace"
}
) by (
${Metrics.kubeDaemonSetCreated.labels.daemonset},
Expand Down

0 comments on commit 06f5b00

Please sign in to comment.