cli: add config kubernetes-versions subcommand (#1224)

Allows users to learn which k8s versions are supported by the
current CLI.
Extend respective docs section.
This commit is contained in:
Otto Bittner 2023-02-22 09:52:47 +01:00 committed by GitHub
parent ce09b9dae5
commit d78d22f95a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 49 additions and 10 deletions

View file

@ -23,6 +23,7 @@ func NewConfigCmd() *cobra.Command {
cmd.AddCommand(newConfigGenerateCmd())
cmd.AddCommand(newConfigFetchMeasurementsCmd())
cmd.AddCommand(newConfigInstanceTypesCmd())
cmd.AddCommand(newConfigKubernetesVersionsCmd())
return cmd
}