46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
/*
|
|
Copyright 2017 the Heptio Ark Contributors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package backup
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/heptio/ark/pkg/client"
|
|
)
|
|
|
|
func NewCommand(f client.Factory) *cobra.Command {
|
|
c := &cobra.Command{
|
|
Use: "backup",
|
|
Short: "Work with backups",
|
|
Long: "Work with backups",
|
|
}
|
|
|
|
c.AddCommand(
|
|
NewCreateCommand(f, "create"),
|
|
NewGetCommand(f, "get"),
|
|
NewLogsCommand(f),
|
|
NewDescribeCommand(f, "describe"),
|
|
NewDownloadCommand(f),
|
|
|
|
// If you delete a backup and it still exists in object storage, the backup sync controller will
|
|
// recreate it. Until we have a good UX around this, we're disabling the delete command.
|
|
// NewDeleteCommand(f),
|
|
)
|
|
|
|
return c
|
|
}
|