Skip to main content
Version: 3.2

SchedulePolicy

SchedulePolicy represents a policy for executing actions on a schedule.

SchedulePolicy

FieldDescriptionType
apiVersionAPIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
string
kindKind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
string
policyPolicyobject

policy fields

FieldDescriptionType
policy.dailyDaily policy that will be triggered daily at a specified timeobject
policy.daily.forceFullSnapshotDayForceFullSnapshotDay specifies day of the week for full snapshot to take placestring
policy.daily.optionsOptions to be passed in to the driver. These will be passed in
to the object being triggered
object
policy.daily.retainRetain Number of objects to retain for daily policy. Defaults to
@DefaultDailyPolicyRetain
integer
policy.daily.timeTime when the policy should be triggered. Expected format is
time.Kitchen eg 12:04PM or 12:04pm
string
policy.intervalInterval policy that will be triggered at the specified intervalobject
policy.interval.optionsOptions to be passed in to the driver. These will be passed in
to the object being triggered
object
policy.interval.retainRetain Number of objects to retain for interval policy. Defaults to
@DefaultIntervalPolicyRetain
integer
policy.monthlyMonthly policy that will be triggered on the specified date of the month
at the specified time
object
policy.monthly.dateDate of the month when the policy should be triggered. If a given date
doesn't exist in a month it'll rollover to the next date of the month.
For example if 31 is specified, it'll trigger on either 1st or 2nd March
depending on if it is a leap year.
integer
policy.monthly.optionsOptions to be passed in to the driver. These will be passed in
to the object being triggered
object
policy.monthly.retainRetain Number of objects to retain for monthly policy. Defaults to
@DefaultMonthlyPolicyRetain
integer
policy.monthly.timeTime when the policy should be triggered. Expected format is
time.Kitchen eg 12:04PM or 12:04pm
string
policy.weeklyWeekly policy that will be triggered on the specified day of the week at
the specified time
object
policy.weekly.dayDay of the week when the policy should be triggered. Valid format are
specified in `Days` above
string
policy.weekly.optionsOptions to be passed in to the driver. These will be passed in
to the object being triggered
object
policy.weekly.retainRetain Number of objects to retain for weekly policy. Defaults to
@DefaultWeeklyPolicyRetain
integer
policy.weekly.timeTime when the policy should be triggered. Expected format is
time.Kitchen eg 12:04PM or 12:04pm
string

SchedulePolicy examples

Interval SchedulePolicy

An interval SchedulePolicy includes the following fields and values:

  • apiVersion: the version of the Stork scheduler (this example uses stork.libopenstorage.org/v1alpha1)

  • kind: as SchedulePolicy

  • metadata.name: the name of the SchedulePolicy object (this example uses testpolicy)

  • policy.interval.intervalInMinutes: the interval, in minutes, after which Portworx triggers the operation (this example triggers the operation every minute)

    apiVersion: stork.libopenstorage.org/v1alpha1
    kind: SchedulePolicy
    metadata:
    name: testpolicy
    policy:
    interval:
    intervalMinutes: 1

Daily SchedulePolicy

A daily SchedulePolicy includes the following fields and values:

  • apiVersion: the version of the Stork scheduler (this example uses stork.libopenstorage.org/v1alpha1)

  • kind: as SchedulePolicy

  • metadata.name: the name of the SchedulePolicy object (this example uses testpolicy)

  • policy.daily.time: the time of the day when Portworx will trigger the operation (this example triggers the operation every day at 10:14 PM)

    apiVersion: stork.libopenstorage.org/v1alpha1
    kind: SchedulePolicy
    metadata:
    name: testpolicy
    policy:
    daily:
    time: "10:14PM"

Weekly SchedulePolicy

A weekly SchedulePolicy includes the following fields and values:

  • apiVersion: the version of the Stork scheduler (this example uses stork.libopenstorage.org/v1alpha1)

  • kind: as SchedulePolicy

  • metadata.name: the name of the SchedulePolicy object (this example uses testpolicy)

  • policy.weekly.day: the day of the week when Portworx will trigger the operation (this example triggers the operation every Thursday)

  • policy.weekly.time: the time of the day when Portworx will trigger the operation (this example triggers the operation at 10:13 PM)

    apiVersion: stork.libopenstorage.org/v1alpha1
    kind: SchedulePolicy
    metadata:
    name: testpolicy
    policy:
    weekly:
    day: "Thursday"
    time: "10:13PM"

Monthly SchedulePolicy

A monthly SchedulePolicy includes the following fields and values:

  • apiVersion: the version of the Stork scheduler (this example uses stork.libopenstorage.org/v1alpha1)

  • kind: as SchedulePolicy

  • metadata.name: the name of the SchedulePolicy object (this example uses testpolicy)

  • policy.monthly.day: the day of the month when Portworx will trigger the operation (this example triggers the operation on the 14th of every month)

  • policy.monthly.time: the time of the day when Portworx will trigger the operation (this example triggers the operation at 8:05 PM)

    apiVersion: stork.libopenstorage.org/v1alpha1
    kind: SchedulePolicy
    metadata:
    name: testpolicy
    policy:
    monthly:
    date: 14
    time: "8:05PM"