-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unify HTCondor secondary with HTCondor and cleanup HTCondor secondary…
… configs
- Loading branch information
1 parent
d51e2c5
commit ce8df70
Showing
13 changed files
with
41 additions
and
405 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
$ANSIBLE_VAULT;1.1;AES256 | ||
36336166336332656436376537343036353234366164616236393139313932343538313133373639 | ||
3064333637333539353566396361666362666539353231360a646430356366343632633637326462 | ||
39333232646363656438316533666664613935353336313064323038313564383734373433656330 | ||
3161396636623764660a636332303565396630666134626235636363636434623537333933653537 | ||
37383165643433633630353961623930653139653132303235306539613332346662323764356563 | ||
65303062333738616266383339366165643264633038323533306365623034656563333731393465 | ||
66386263353433303832363936323138386637636366663338336263323835663730616639393831 | ||
32333161633131323534306565626530616364386261646439336436303834386265396161333133 | ||
3130 | ||
31353533313831356632376636636564653732313930623263376437313362386632623732306136 | ||
3465326632326138646330353164336363653764396237370a393562613834343765313835656362 | ||
66633030353534663831323939386335316130343137396139633038366438613731376130663564 | ||
6635643366613463390a663637643834366632643730666131323737633966393335343734663731 | ||
63346138623034333265633465376633313537313062633633353261623934333037646532303132 | ||
63643364633136613265333461623036313964383932336335623236623462316437303964346163 | ||
32386236303765353936333563303934323964383039626233613333396431383936326530343931 | ||
33636531343831663864373365613036333964343534616664356462383066623238326138373435 | ||
3566 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
--- | ||
htcondor_network_interface: ens802f0.223 | ||
|
||
# Settings specific to the `usegalaxy_eu.htcondor` role. | ||
condor_daemons: | ||
- COLLECTOR | ||
- NEGOTIATOR | ||
- MASTER | ||
- SCHEDD | ||
# 15/03/2024: On sn06 HTCondor conf was manually adjusted to use port 9618 since the | ||
# HTCondor container was using 9628. Changing this now will require a restart of the | ||
# HTCondor service on sn06. So this needs to be combined with a maintenance window in the | ||
# future. Rest of the schedulers are using 9628 including the manager. | ||
# Adding it to the host_vars for the dedicated host sn06 thus it has the higher precedence. | ||
htcondor_shared_port: 9618 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,48 +79,16 @@ ansible_ssh_user=centos | |
[htcondor:children] | ||
htcondor-manager | ||
htcondor-submit | ||
htcondor-secondary | ||
|
||
[htcondor-manager] | ||
sn06.galaxyproject.eu | ||
|
||
[htcondor-manager:children] | ||
htcondor-secondary-manager | ||
|
||
[htcondor-manager:vars] | ||
ansible_group_priority=2 | ||
|
||
[htcondor-submit] | ||
sn06.galaxyproject.eu | ||
|
||
[htcondor-submit:children] | ||
htcondor-secondary-submit | ||
|
||
[htcondor-submit:vars] | ||
ansible_group_priority=2 | ||
|
||
[htcondor-secondary:children] | ||
htcondor-secondary-manager | ||
htcondor-secondary-submit | ||
|
||
[htcondor-secondary:vars] | ||
ansible_group_priority=3 | ||
|
||
[htcondor-secondary-manager] | ||
build.galaxyproject.eu ansible_ssh_user=root | ||
|
||
[htcondor-secondary-manager:vars] | ||
[htcondor-manager:vars] | ||
ansible_group_priority=4 | ||
|
||
[htcondor-secondary-submit] | ||
nspawn-htcondor.sn06.galaxyproject.eu ansible_host=127.0.0.1 ansible_port=2222 ansible_ssh_user=root ansible_ssh_common_args='-o HostKeyAlias=nspawn-htcondor.sn06.galaxyproject.eu -o ProxyCommand="ssh -W %h:%p -q [email protected]"' | ||
[htcondor-submit] | ||
maintenance.galaxyproject.eu | ||
|
||
[htcondor-secondary-submit:vars] | ||
ansible_group_priority=4 | ||
|
||
[htcondor-secondary-submit-host] | ||
sn06.galaxyproject.eu | ||
|
||
[htcondor-secondary-submit-host:vars] | ||
ansible_group_priority=2 | ||
[htcondor-submit:vars] | ||
ansible_group_priority=4 |
Oops, something went wrong.