Skip to content

Commit

Permalink
Enable the scheduler by default
Browse files Browse the repository at this point in the history
  • Loading branch information
style95 committed Feb 11, 2024
1 parent e20ab17 commit b0b222d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions ansible/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,13 @@ Set the value of pause-grace to 10s by default
.
```

#### Enable the scheduler
- Make sure you enable the scheduler by configuring `scheduler_enable`.
#### Disable the scheduler
- You can disable the scheduler by configuring `scheduler_enable`.
- The scheduler is enabled by default.

**ansible/environments/local/group_vars/all**
```yaml
scheduler_enable: true
scheduler_enable: false
```
#### [Optional] Enable ElasticSearch Activation Store
Expand Down
2 changes: 1 addition & 1 deletion ansible/group_vars/all
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ durationChecker:
spi: "{{ duration_checker_spi | default('') }}"
timeWindow: "{{ duration_checker_time_window | default('1 d') }}"

enable_scheduler: "{{ scheduler_enable | default(false) }}"
enable_scheduler: "{{ scheduler_enable | default(true) }}"

scheduler:
protocol: "{{ scheduler_protocol | default('http') }}"
Expand Down

0 comments on commit b0b222d

Please sign in to comment.