Files
SlurmTests/play.yml
2021-04-22 21:48:32 +02:00

36 lines
819 B
YAML

---
- hosts: ed-c7-1
tasks:
- name: "install tools"
yum:
name: [ vim-enhanced, htop, screen, bind-utils, nmap-ncat, net-tools ]
state: present
- name: "install htcondor repo"
yum:
name: https://research.cs.wisc.edu/htcondor/repo/8.9/htcondor-release-current.el7.noarch.rpm
state: present
- name: "install htcondor software "
yum:
name: htcondor-ce
state: present
- name: "remove minicondor configuration"
yum:
name: minicondor
state: absent
- name: "setup singularity"
import_tasks: "singularity.yml"
tags: singularity
- name: "setup docker"
import_tasks: "docker_setup.yml"
tags: docker
- name: "setup htcondor test environment in docker containers"
import_role:
name: docker-htcondor
tags: docker-con