1
0
mirror of synced 2026-02-06 19:05:55 +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

@@ -42,12 +42,12 @@ WARNING: This command will print sensitive information if Kubernetes Secrets are
# Export the final values of a Helm release composed from referred ConfigMaps and Secrets
flux debug hr podinfo --show-values > values.yaml`,
RunE: debugHelmReleaseCmdRun,
Args: cobra.ExactArgs(1),
RunE: debugHelmReleaseCmdRun,
Args: cobra.ExactArgs(1),
ValidArgsFunction: resourceNamesCompletionFunc(helmv2.GroupVersion.WithKind(helmv2.HelmReleaseKind)),
}
type debugHelmReleaseFlags struct {
name string
showStatus bool
showValues bool
}

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
}