/* 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 schedule import ( "context" "fmt" "github.com/pkg/errors" "github.com/spf13/cobra" "github.com/spf13/pflag" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" api "github.com/vmware-tanzu/velero/pkg/apis/velero/v1" "github.com/vmware-tanzu/velero/pkg/client" "github.com/vmware-tanzu/velero/pkg/cmd" "github.com/vmware-tanzu/velero/pkg/cmd/cli/backup" "github.com/vmware-tanzu/velero/pkg/cmd/util/output" ) func NewCreateCommand(f client.Factory, use string) *cobra.Command { o := NewCreateOptions() c := &cobra.Command{ Use: use + " NAME --schedule", Short: "Create a schedule", Long: `The --schedule flag is required, in cron notation, using UTC time: | Character Position | Character Period | Acceptable Values | | -------------------|:----------------:| -----------------:| | 1 | Minute | 0-59,* | | 2 | Hour | 0-23,* | | 3 | Day of Month | 1-31,* | | 4 | Month | 1-12,* | | 5 | Day of Week | 0-6,* | The schedule can also be expressed using "@every " syntax. The duration can be specified using a combination of seconds (s), minutes (m), and hours (h), for example: "@every 2h30m".`, Example: ` # Create a backup every 6 hours velero create schedule NAME --schedule="0 */6 * * *" # Create a backup every 6 hours with the @every notation velero create schedule NAME --schedule="@every 6h" # Create a daily backup of the web namespace velero create schedule NAME --schedule="@every 24h" --include-namespaces web # Create a weekly backup, each living for 90 days (2160 hours) velero create schedule NAME --schedule="@every 168h" --ttl 2160h0m0s `, Args: cobra.ExactArgs(1), Run: func(c *cobra.Command, args []string) { cmd.CheckError(o.Complete(args, f)) cmd.CheckError(o.Validate(c, args, f)) cmd.CheckError(o.Run(c, f)) }, } o.BindFlags(c.Flags()) output.BindFlags(c.Flags()) output.ClearOutputFlagDefault(c) return c } type CreateOptions struct { BackupOptions *backup.CreateOptions Schedule string labelSelector *metav1.LabelSelector } func NewCreateOptions() *CreateOptions { return &CreateOptions{ BackupOptions: backup.NewCreateOptions(), } } func (o *CreateOptions) BindFlags(flags *pflag.FlagSet) { o.BackupOptions.BindFlags(flags) flags.StringVar(&o.Schedule, "schedule", o.Schedule, "a cron expression specifying a recurring schedule for this backup to run") } func (o *CreateOptions) Validate(c *cobra.Command, args []string, f client.Factory) error { if len(o.Schedule) == 0 { return errors.New("--schedule is required") } return o.BackupOptions.Validate(c, args, f) } func (o *CreateOptions) Complete(args []string, f client.Factory) error { return o.BackupOptions.Complete(args, f) } func (o *CreateOptions) Run(c *cobra.Command, f client.Factory) error { veleroClient, err := f.Client() if err != nil { return err } schedule := &api.Schedule{ ObjectMeta: metav1.ObjectMeta{ Namespace: f.Namespace(), Name: o.BackupOptions.Name, Labels: o.BackupOptions.Labels.Data(), }, Spec: api.ScheduleSpec{ Template: api.BackupSpec{ IncludedNamespaces: o.BackupOptions.IncludeNamespaces, ExcludedNamespaces: o.BackupOptions.ExcludeNamespaces, IncludedResources: o.BackupOptions.IncludeResources, ExcludedResources: o.BackupOptions.ExcludeResources, IncludeClusterResources: o.BackupOptions.IncludeClusterResources.Value, LabelSelector: o.BackupOptions.Selector.LabelSelector, SnapshotVolumes: o.BackupOptions.SnapshotVolumes.Value, TTL: metav1.Duration{Duration: o.BackupOptions.TTL}, StorageLocation: o.BackupOptions.StorageLocation, VolumeSnapshotLocations: o.BackupOptions.SnapshotLocations, }, Schedule: o.Schedule, }, } if printed, err := output.PrintWithFormat(c, schedule); printed || err != nil { return err } _, err = veleroClient.VeleroV1().Schedules(schedule.Namespace).Create(context.TODO(), schedule, metav1.CreateOptions{}) if err != nil { return err } fmt.Printf("Schedule %q created successfully.\n", schedule.Name) return nil }