2017-08-02 17:27:17 +00:00
|
|
|
/*
|
2018-01-02 18:51:49 +00:00
|
|
|
Copyright 2017 the Heptio Ark contributors.
|
2017-08-02 17:27:17 +00:00
|
|
|
|
|
|
|
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 restore
|
|
|
|
|
|
|
|
import (
|
2017-10-26 15:24:16 +00:00
|
|
|
"fmt"
|
|
|
|
|
2017-08-02 17:27:17 +00:00
|
|
|
"github.com/spf13/cobra"
|
2017-10-26 15:24:16 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-08-02 17:27:17 +00:00
|
|
|
|
2017-10-26 15:24:16 +00:00
|
|
|
api "github.com/heptio/ark/pkg/apis/ark/v1"
|
2017-08-02 17:27:17 +00:00
|
|
|
"github.com/heptio/ark/pkg/client"
|
2017-10-26 15:24:16 +00:00
|
|
|
"github.com/heptio/ark/pkg/cmd"
|
|
|
|
"github.com/heptio/ark/pkg/cmd/util/output"
|
2017-08-02 17:27:17 +00:00
|
|
|
)
|
|
|
|
|
2017-10-26 15:24:16 +00:00
|
|
|
func NewDescribeCommand(f client.Factory, use string) *cobra.Command {
|
|
|
|
var listOptions metav1.ListOptions
|
|
|
|
|
2017-08-02 17:27:17 +00:00
|
|
|
c := &cobra.Command{
|
2017-11-13 14:50:49 +00:00
|
|
|
Use: use + " [NAME1] [NAME2] [NAME...]",
|
2017-10-26 15:24:16 +00:00
|
|
|
Short: "Describe restores",
|
2017-08-02 17:27:17 +00:00
|
|
|
Run: func(c *cobra.Command, args []string) {
|
2017-10-26 15:24:16 +00:00
|
|
|
arkClient, err := f.Client()
|
|
|
|
cmd.CheckError(err)
|
|
|
|
|
|
|
|
var restores *api.RestoreList
|
|
|
|
if len(args) > 0 {
|
|
|
|
restores = new(api.RestoreList)
|
|
|
|
for _, name := range args {
|
2017-12-22 14:43:44 +00:00
|
|
|
restore, err := arkClient.Ark().Restores(f.Namespace()).Get(name, metav1.GetOptions{})
|
2017-10-26 15:24:16 +00:00
|
|
|
cmd.CheckError(err)
|
|
|
|
restores.Items = append(restores.Items, *restore)
|
|
|
|
}
|
|
|
|
} else {
|
2017-12-22 14:43:44 +00:00
|
|
|
restores, err = arkClient.ArkV1().Restores(f.Namespace()).List(listOptions)
|
2017-10-26 15:24:16 +00:00
|
|
|
cmd.CheckError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
first := true
|
|
|
|
for _, restore := range restores.Items {
|
2017-11-13 14:50:49 +00:00
|
|
|
s := output.DescribeRestore(&restore, arkClient)
|
2017-10-26 15:24:16 +00:00
|
|
|
if first {
|
|
|
|
first = false
|
|
|
|
fmt.Print(s)
|
|
|
|
} else {
|
|
|
|
fmt.Printf("\n\n%s", s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cmd.CheckError(err)
|
2017-08-02 17:27:17 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-10-26 15:24:16 +00:00
|
|
|
c.Flags().StringVarP(&listOptions.LabelSelector, "selector", "l", listOptions.LabelSelector, "only show items matching this label selector")
|
|
|
|
|
2017-08-02 17:27:17 +00:00
|
|
|
return c
|
|
|
|
}
|