mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-02-02 18:12:05 +00:00
* Add colors to describe command * Add colors to describe backups/restore/schedules commands * Make name in the output bold * Disable colors via `--colorized` flag or if velero isn't in TTY Co-authored-by: Clay Kauzlaric <ckauzlaric@vmware.com> Signed-off-by: Clay Kauzlaric <ckauzlaric@vmware.com> Signed-off-by: Mikael Manukyan <mmanukyan@vmware.com> * Add changelog * and run make update Co-authored-by: Mikael Manukyan <mmanukyan@vmware.com> Signed-off-by: Mikael Manukyan <mmanukyan@vmware.com> Signed-off-by: Clay Kauzlaric <ckauzlaric@vmware.com> * Add colorized to the client config file Co-authored-by: Mikael Manukyan <mmanukyan@vmware.com> Signed-off-by: Clay Kauzlaric <ckauzlaric@vmware.com> Co-authored-by: Mikael Manukyan <mmanukyan@vmware.com> * allow client config to use string values * the command `velero client config set colorized=false` writes a string value of "false" into the config. This change allows that string to be accepted and converted into a boolean when used in program. Signed-off-by: Clay Kauzlaric <ckauzlaric@vmware.com> * Add docs about colored CLI output Co-authored-by: Mikael Manukyan <mmanukyan@vmware.com> Signed-off-by: Clay Kauzlaric <ckauzlaric@vmware.com> * Update site/content/docs/main/customize-installation.md Co-authored-by: JenTing Hsiao <jenting.hsiao@suse.com> Signed-off-by: Clay Kauzlaric <ckauzlaric@vmware.com> * docs: remove comma * as per @carlisia 's suggestion Signed-off-by: Clay Kauzlaric <ckauzlaric@vmware.com> Co-authored-by: Clay Kauzlaric <ckauzlaric@vmware.com> Co-authored-by: Clay Kauzlaric <clay.kauzlaric@gmail.com> Co-authored-by: JenTing Hsiao <jenting.hsiao@suse.com>
80 lines
2.0 KiB
Go
80 lines
2.0 KiB
Go
/*
|
|
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)
|
|
}
|