Add name completion to debug commands

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
pull/5117/head
Stefan Prodan 1 month ago
parent 5b740c45d1
commit 9b1b5e8a51
No known key found for this signature in database
GPG Key ID: 3299AEB0E4085BAF

@ -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
}

@ -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
}

Loading…
Cancel
Save