mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-24 08:31:47 +00:00
cmd/flux/export_source*: fix typo in comment
This commit fixes a small typo in the comments for the export source commands. Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
This commit is contained in:
parent
ed4718205a
commit
065d0b2c06
6 changed files with 6 additions and 6 deletions
|
|
@ -34,7 +34,7 @@ import (
|
||||||
var exportSourceBucketCmd = &cobra.Command{
|
var exportSourceBucketCmd = &cobra.Command{
|
||||||
Use: "bucket [name]",
|
Use: "bucket [name]",
|
||||||
Short: "Export Bucket sources in YAML format",
|
Short: "Export Bucket sources in YAML format",
|
||||||
Long: "The export source git command exports on or all Bucket sources in YAML format.",
|
Long: "The export source git command exports one or all Bucket sources in YAML format.",
|
||||||
Example: ` # Export all Bucket sources
|
Example: ` # Export all Bucket sources
|
||||||
flux export source bucket --all > sources.yaml
|
flux export source bucket --all > sources.yaml
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ import (
|
||||||
var exportSourceGitCmd = &cobra.Command{
|
var exportSourceGitCmd = &cobra.Command{
|
||||||
Use: "git [name]",
|
Use: "git [name]",
|
||||||
Short: "Export GitRepository sources in YAML format",
|
Short: "Export GitRepository sources in YAML format",
|
||||||
Long: "The export source git command exports on or all GitRepository sources in YAML format.",
|
Long: "The export source git command exports one or all GitRepository sources in YAML format.",
|
||||||
Example: ` # Export all GitRepository sources
|
Example: ` # Export all GitRepository sources
|
||||||
flux export source git --all > sources.yaml
|
flux export source git --all > sources.yaml
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ import (
|
||||||
var exportSourceHelmCmd = &cobra.Command{
|
var exportSourceHelmCmd = &cobra.Command{
|
||||||
Use: "helm [name]",
|
Use: "helm [name]",
|
||||||
Short: "Export HelmRepository sources in YAML format",
|
Short: "Export HelmRepository sources in YAML format",
|
||||||
Long: "The export source git command exports on or all HelmRepository sources in YAML format.",
|
Long: "The export source git command exports one or all HelmRepository sources in YAML format.",
|
||||||
Example: ` # Export all HelmRepository sources
|
Example: ` # Export all HelmRepository sources
|
||||||
flux export source helm --all > sources.yaml
|
flux export source helm --all > sources.yaml
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ Export Bucket sources in YAML format
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
The export source git command exports on or all Bucket sources in YAML format.
|
The export source git command exports one or all Bucket sources in YAML format.
|
||||||
|
|
||||||
```
|
```
|
||||||
flux export source bucket [name] [flags]
|
flux export source bucket [name] [flags]
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ Export GitRepository sources in YAML format
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
The export source git command exports on or all GitRepository sources in YAML format.
|
The export source git command exports one or all GitRepository sources in YAML format.
|
||||||
|
|
||||||
```
|
```
|
||||||
flux export source git [name] [flags]
|
flux export source git [name] [flags]
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ Export HelmRepository sources in YAML format
|
||||||
|
|
||||||
### Synopsis
|
### Synopsis
|
||||||
|
|
||||||
The export source git command exports on or all HelmRepository sources in YAML format.
|
The export source git command exports one or all HelmRepository sources in YAML format.
|
||||||
|
|
||||||
```
|
```
|
||||||
flux export source helm [name] [flags]
|
flux export source helm [name] [flags]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue