Renerate files

Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
This commit is contained in:
Andy Goldstein
2017-08-23 13:28:40 -04:00
parent ee38a9471a
commit 5c9ffae88f
25 changed files with 520 additions and 11 deletions

View File

@@ -14,6 +14,7 @@ associated data.
```
--alsologtostderr log to standard error as well as files
-h, --help help for ark
--kubeconfig string Path to the kubeconfig file to use to talk to the Kubernetes apiserver. If unset, try the environment variable KUBECONFIG, as well as in-cluster configuration
--log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0)
--log_dir string If non-empty, write log files in this directory

View File

@@ -7,6 +7,12 @@ Work with backups
Work with backups
### Options
```
-h, --help help for backup
```
### Options inherited from parent commands
```
@@ -24,4 +30,5 @@ Work with backups
* [ark](ark.md) - Back up and restore Kubernetes cluster resources.
* [ark backup create](ark_backup_create.md) - Create a backup
* [ark backup get](ark_backup_get.md) - Get backups
* [ark backup logs](ark_backup_logs.md) - Get backup logs

View File

@@ -8,7 +8,7 @@ Create a backup
Create a backup
```
ark backup create NAME
ark backup create NAME [flags]
```
### Options
@@ -16,6 +16,7 @@ ark backup create NAME
```
--exclude-namespaces stringArray namespaces to exclude from the backup
--exclude-resources stringArray resources to exclude from the backup, formatted as resource.group, such as storageclasses.storage.k8s.io
-h, --help help for create
--include-namespaces stringArray namespaces to include in the backup (use '*' for all namespaces) (default *)
--include-resources stringArray resources to include in the backup, formatted as resource.group, such as storageclasses.storage.k8s.io (use '*' for all resources)
--label-columns stringArray a comma-separated list of labels to be displayed as columns

View File

@@ -8,12 +8,13 @@ Get backups
Get backups
```
ark backup get
ark backup get [flags]
```
### Options
```
-h, --help help for get
--label-columns stringArray a comma-separated list of labels to be displayed as columns
-o, --output string Output display format. For create commands, display the object but do not send it to the server. Valid formats are 'table', 'json', and 'yaml'. (default "table")
-l, --selector string only show items matching this label selector

View File

@@ -0,0 +1,36 @@
## ark backup logs
Get backup logs
### Synopsis
Get backup logs
```
ark backup logs BACKUP [flags]
```
### Options
```
-h, --help help for logs
--timeout duration how long to wait to receive logs (default 1m0s)
```
### Options inherited from parent commands
```
--alsologtostderr log to standard error as well as files
--kubeconfig string Path to the kubeconfig file to use to talk to the Kubernetes apiserver. If unset, try the environment variable KUBECONFIG, as well as in-cluster configuration
--log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0)
--log_dir string If non-empty, write log files in this directory
--logtostderr log to standard error instead of files
--stderrthreshold severity logs at or above this threshold go to stderr (default 2)
-v, --v Level log level for V logs
--vmodule moduleSpec comma-separated list of pattern=N settings for file-filtered logging
```
### SEE ALSO
* [ark backup](ark_backup.md) - Work with backups

View File

@@ -7,6 +7,12 @@ Work with restores
Work with restores
### Options
```
-h, --help help for restore
```
### Options inherited from parent commands
```

View File

@@ -8,13 +8,14 @@ Create a restore
Create a restore
```
ark restore create BACKUP
ark restore create BACKUP [flags]
```
### Options
```
--exclude-namespaces stringArray namespaces to exclude from the restore
-h, --help help for create
--include-namespaces stringArray namespaces to include in the restore (use '*' for all namespaces) (default *)
--label-columns stringArray a comma-separated list of labels to be displayed as columns
--labels mapStringString labels to apply to the restore

View File

@@ -8,7 +8,13 @@ Delete a restore
Delete a restore
```
ark restore delete NAME
ark restore delete NAME [flags]
```
### Options
```
-h, --help help for delete
```
### Options inherited from parent commands

View File

@@ -8,12 +8,13 @@ get restores
get restores
```
ark restore get
ark restore get [flags]
```
### Options
```
-h, --help help for get
--label-columns stringArray a comma-separated list of labels to be displayed as columns
-o, --output string Output display format. For create commands, display the object but do not send it to the server. Valid formats are 'table', 'json', and 'yaml'. (default "table")
-l, --selector string only show items matching this label selector

View File

@@ -7,6 +7,12 @@ Work with schedules
Work with schedules
### Options
```
-h, --help help for schedule
```
### Options inherited from parent commands
```

View File

@@ -8,7 +8,7 @@ Create a schedule
Create a schedule
```
ark schedule create NAME
ark schedule create NAME [flags]
```
### Options
@@ -16,6 +16,7 @@ ark schedule create NAME
```
--exclude-namespaces stringArray namespaces to exclude from the backup
--exclude-resources stringArray resources to exclude from the backup, formatted as resource.group, such as storageclasses.storage.k8s.io
-h, --help help for create
--include-namespaces stringArray namespaces to include in the backup (use '*' for all namespaces) (default *)
--include-resources stringArray resources to include in the backup, formatted as resource.group, such as storageclasses.storage.k8s.io (use '*' for all resources)
--label-columns stringArray a comma-separated list of labels to be displayed as columns

View File

@@ -8,7 +8,13 @@ Delete a schedule
Delete a schedule
```
ark schedule delete NAME
ark schedule delete NAME [flags]
```
### Options
```
-h, --help help for delete
```
### Options inherited from parent commands

View File

@@ -8,12 +8,13 @@ Get schedules
Get schedules
```
ark schedule get
ark schedule get [flags]
```
### Options
```
-h, --help help for get
--label-columns stringArray a comma-separated list of labels to be displayed as columns
-o, --output string Output display format. For create commands, display the object but do not send it to the server. Valid formats are 'table', 'json', and 'yaml'. (default "table")
-l, --selector string only show items matching this label selector

View File

@@ -8,19 +8,20 @@ Run the ark server
Run the ark server
```
ark server
ark server [flags]
```
### Options
```
--kubeconfig string Path to the kubeconfig file to use to talk to the Kubernetes apiserver. If unset, try the environment variable KUBECONFIG, as well as in-cluster configuration
-h, --help help for server
```
### Options inherited from parent commands
```
--alsologtostderr log to standard error as well as files
--kubeconfig string Path to the kubeconfig file to use to talk to the Kubernetes apiserver. If unset, try the environment variable KUBECONFIG, as well as in-cluster configuration
--log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0)
--log_dir string If non-empty, write log files in this directory
--logtostderr log to standard error instead of files

View File

@@ -8,7 +8,13 @@ Print the ark version and associated image
Print the ark version and associated image
```
ark version
ark version [flags]
```
### Options
```
-h, --help help for version
```
### Options inherited from parent commands