-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
schedule_describer.go
79 lines (63 loc) · 1.98 KB
/
schedule_describer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
Copyright 2017 the Velero 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 output
import (
"fmt"
"github.com/fatih/color"
v1 "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
)
func DescribeSchedule(schedule *v1.Schedule) string {
return Describe(func(d *Describer) {
d.DescribeMetadata(schedule.ObjectMeta)
d.Println()
phase := schedule.Status.Phase
if phase == "" {
phase = v1.SchedulePhaseNew
}
phaseString := string(phase)
switch phase {
case v1.SchedulePhaseEnabled:
phaseString = color.GreenString(phaseString)
case v1.SchedulePhaseFailedValidation:
phaseString = color.RedString(phaseString)
}
d.Printf("Phase:\t%s\n", phaseString)
status := schedule.Status
if len(status.ValidationErrors) > 0 {
d.Println()
d.Printf("Validation errors:")
for _, ve := range status.ValidationErrors {
d.Printf("\t%s\n", color.RedString(ve))
}
}
d.Println()
DescribeScheduleSpec(d, schedule.Spec)
d.Println()
DescribeScheduleStatus(d, schedule.Status)
})
}
func DescribeScheduleSpec(d *Describer, spec v1.ScheduleSpec) {
d.Printf("Schedule:\t%s\n", spec.Schedule)
d.Println()
d.Println("Backup Template:")
d.Prefix = "\t"
DescribeBackupSpec(d, spec.Template)
d.Prefix = ""
}
func DescribeScheduleStatus(d *Describer, status v1.ScheduleStatus) {
lastBackup := "<never>"
if status.LastBackup != nil && !status.LastBackup.Time.IsZero() {
lastBackup = fmt.Sprintf("%v", status.LastBackup.Time)
}
d.Printf("Last Backup:\t%s\n", lastBackup)
}