Adds convert examples

Signed-off-by: JoshVanL <vleeuwenjoshua@gmail.com>
This commit is contained in:
JoshVanL
2020-04-28 09:28:18 +01:00
parent 4260eca10f
commit 23ce8fc0a8
2 changed files with 15 additions and 3 deletions
+2
View File
@@ -18,6 +18,8 @@ go_library(
"@io_k8s_cli_runtime//pkg/resource:go_default_library",
"@io_k8s_klog//:go_default_library",
"@io_k8s_kubectl//pkg/cmd/util:go_default_library",
"@io_k8s_kubectl//pkg/util/i18n:go_default_library",
"@io_k8s_kubectl//pkg/util/templates:go_default_library",
],
)
+13 -3
View File
@@ -30,12 +30,21 @@ import (
"k8s.io/cli-runtime/pkg/resource"
"k8s.io/klog"
cmdutil "k8s.io/kubectl/pkg/cmd/util"
"k8s.io/kubectl/pkg/util/i18n"
"k8s.io/kubectl/pkg/util/templates"
"github.com/jetstack/cert-manager/pkg/api"
)
const (
longDesc = `
var (
example = templates.Examples(i18n.T(`
# Convert 'cert.yaml' to latest version and print to stdout.
kubectl convert -f cert.yaml
# Convert kustomize overlay under current directory to 'cert-manager.io/v1alpha3'
kubectl convert -k . --output-version cert-manager.io/v1alpha3`))
longDesc = templates.LongDesc(i18n.T(`
Convert cert-manager config files between different API versions. Both YAML
and JSON formats are accepted.
@@ -44,7 +53,7 @@ of version specified by --output-version flag. If target version is not specifie
not supported, convert to latest version.
The default output will be printed to stdout in YAML format. One can use -o option
to change to output destination.`
to change to output destination.`))
)
// Options is a struct to support convert command
@@ -74,6 +83,7 @@ func NewCmdConvert(ioStreams genericclioptions.IOStreams) *cobra.Command {
Use: "convert",
Short: "Convert cert-manager config files between different API versions",
Long: longDesc,
Example: example,
DisableFlagsInUseLine: true,
Run: func(cmd *cobra.Command, args []string) {
cmdutil.CheckErr(o.Complete(cmd))