1
0
mirror of synced 2026-02-13 13:06:56 +00:00

Add name completion to debug commands

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2024-12-13 18:40:02 +02:00
parent 5b740c45d1
commit 9b1b5e8a51
2 changed files with 6 additions and 6 deletions

View File

@@ -44,12 +44,12 @@ WARNING: This command will print sensitive information if Kubernetes Secrets are
# Export the final variables used for post-build substitutions composed from referred ConfigMaps and Secrets
flux debug ks podinfo --show-vars > vars.env`,
RunE: debugKustomizationCmdRun,
Args: cobra.ExactArgs(1),
RunE: debugKustomizationCmdRun,
Args: cobra.ExactArgs(1),
ValidArgsFunction: resourceNamesCompletionFunc(kustomizev1.GroupVersion.WithKind(kustomizev1.KustomizationKind)),
}
type debugKustomizationFlags struct {
name string
showStatus bool
showVars bool
}