Skip to content

Commit

Permalink
Update clientintents export docs with new filter by name capability (
Browse files Browse the repository at this point in the history
  • Loading branch information
amitlicht authored Dec 11, 2024
1 parent a5178e4 commit 429dc2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pkg/cli/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const (
)

func RegisterStandardFilterFlags(cmd *cobra.Command) {
cmd.Flags().StringSliceP(ClustersKey, ClustersShortHand, nil, "filter by clusters")
cmd.Flags().StringSliceP(EnvironmentsKey, EnvironmentsShorthand, nil, "filter by environments")
cmd.Flags().StringSliceP(NamespacesKey, NamespacesShorthand, nil, "filter by namespaces")
cmd.Flags().StringSliceP(ServicesKey, ServicesShorthand, nil, "filter by services")
cmd.Flags().StringSliceP(ClustersKey, ClustersShortHand, nil, "filter by cluster IDs or names")
cmd.Flags().StringSliceP(EnvironmentsKey, EnvironmentsShorthand, nil, "filter by environment IDs or names")
cmd.Flags().StringSliceP(NamespacesKey, NamespacesShorthand, nil, "filter by namespace IDs or names")
cmd.Flags().StringSliceP(ServicesKey, ServicesShorthand, nil, "filter by service IDs or names")
}

0 comments on commit 429dc2a

Please sign in to comment.