@Override
  public ScheduleOptions getOptions(Config config) {
    ScheduleOptions options = scheduler.NOW();
    options.canRunConcurrently(false);
    options.onLeaderOnly(true);
    options.name(config.getWorkspace().getJobName());

    return options;
  }