Scheduling

You can schedule applications to all project devices or to a subset based on specified selector and device labels. Scheduling is controlled with scheduling section in application specification

Specification

Scheduling to all devices:

...
scheduling:
  type: AllDevices
...

Scheduling to specific device based on label selectors

...
scheduling:
  type: Conditional
  selectors:
    device: development # <- Label selector for specific devices
...

Remove application from any devices

...
scheduling:
  type: NoDevices
...

Last updated