We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20bacff commit d94f865Copy full SHA for d94f865
icpc-wf/ansible/judgehost.yml
@@ -3,6 +3,10 @@
3
4
- name: setup judgehost
5
hosts: judgehost
6
+ serial:
7
+ - 33% # We always leave 1/3 of the judges online
8
+ - 33%
9
+ - 34%
10
vars:
11
host_type: judgehost
12
become: yes
@@ -37,9 +41,11 @@
37
41
tags: prometheus_target_all
38
42
when: GRAFANA_MONITORING
39
43
pre_tasks:
40
- - pause:
- prompt: "Did you disable all judges"
- delegate_to: localhost
44
+ - name: Disable all cores
45
+ service:
46
+ name="domjudge-judgedaemon@{{item}}"
47
+ state=stopped
48
+ with_sequence: start=0 end={{ ansible_processor_vcpus }} format=domjudge-judgedaemon@%1x
49
tasks:
50
- name: add autostart shortcuts
51
template:
0 commit comments