Skip to content

Commit 1aa130e

Browse files
committed
Set DOMserver IPs
See Pat's list, I'm not sure about the analyst instance if that is the host `green` or the host `analyst-green`, went with the `analyst-green`. Onsite we should discuss which machine will be dualhomed or which firewall can be changed so we can manage the analyst instance.
1 parent 7535acf commit 1aa130e

File tree

1 file changed

+69
-0
lines changed
  • provision-contest/ansible

1 file changed

+69
-0
lines changed

provision-contest/ansible/hosts

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
[all:vars]
2+
ansible_user=root
3+
ansible_python_interpreter=/usr/bin/python3
4+
5+
# When moving clients for ad-hoc actions:
6+
# move them to their own group to keep hosts files on deployed machines in sync.
7+
8+
[onprem:children]
9+
domserver
10+
judgehost
11+
grafana
12+
admin
13+
14+
[online:children]
15+
online-domserver
16+
online-judgehost
17+
18+
[domserver]
19+
# Set EFI_ORDER onsite for faster boot
20+
#EFI_ORDER='0\,1\,3\,4'
21+
domjudge-primary ansible_host=10.3.3.216 KEEPALIVED_PRIORITY=100
22+
domjudge-backup ansible_host=10.3.3.217 KEEPALIVED_PRIORITY=99
23+
# Discuss if we can have this host dualhomed in blue to make management easier.\
24+
# Looking at the IP sheet that would mean that our emergency laptop needs to move.
25+
domjudge-analyst ansible_host=172.29.1.240
26+
27+
[domserver:children]
28+
emergency
29+
30+
[emergency]
31+
domjudge-laptop ansible_host=10.3.3.241
32+
33+
[judgehost]
34+
domjudge-judgehost1 ansible_host=10.2.2.192
35+
domjudge-judgehost2 ansible_host=10.2.2.193
36+
domjudge-judgehost3 ansible_host=10.2.2.194
37+
domjudge-judgehost4 ansible_host=10.2.2.195
38+
domjudge-judgehost5 ansible_host=10.2.2.196
39+
domjudge-judgehost6 ansible_host=10.2.2.197
40+
domjudge-judgehost7 ansible_host=10.2.2.198
41+
domjudge-judgehost8 ansible_host=10.2.2.199
42+
domjudge-judgehost9 ansible_host=10.2.2.200
43+
domjudge-judgehost10 ansible_host=10.2.2.201
44+
domjudge-judgehost11 ansible_host=10.2.2.202
45+
domjudge-judgehost12 ansible_host=10.2.2.203
46+
domjudge-judgehost13 ansible_host=10.2.2.204
47+
domjudge-judgehost14 ansible_host=10.2.2.205
48+
domjudge-judgehost15 ansible_host=10.2.2.206
49+
domjudge-judgehost16 ansible_host=10.2.2.207
50+
domjudge-judgehost17 ansible_host=10.2.2.208
51+
domjudge-judgehost18 ansible_host=10.2.2.209
52+
53+
[admin]
54+
domjudge-ccsadmin1 ansible_host=10.3.3.223
55+
domjudge-ccsadmin2 ansible_host=10.3.3.224
56+
domjudge-ccsadmin3 ansible_host=10.3.3.225
57+
domjudge-ccsadmin4 ansible_host=10.3.3.226
58+
domjudge-ccsadmin5 ansible_host=10.3.3.227
59+
60+
[grafana]
61+
# During the WFs we use one of the ccsadmin machines
62+
# Doesn't matter which (admin) machine but should not be 1 as that runs ansible
63+
domjudge-ccsadmin2 ansible_host=10.3.3.225
64+
65+
[online-domserver]
66+
online-domserver ansible_host=192.168.255.255
67+
68+
[online-judgehost]
69+
online-judgehost1 ansible_host=192.168.255.255

0 commit comments

Comments
 (0)