restructured playbooks, cleanup

This commit is contained in:
2021-06-25 01:33:02 +02:00
parent 188a9215a9
commit a61d08d118
9 changed files with 125 additions and 160 deletions

32
htcondor.yml Normal file
View File

@@ -0,0 +1,32 @@
---
- hosts: htcondor
tasks:
- name: "install htcondor repo"
yum:
name: https://research.cs.wisc.edu/htcondor/repo/8.9/htcondor-release-current.el7.noarch.rpm
state: present
tags: htcondor
- name: "install htcondor software "
yum:
name: htcondor-ce
state: present
tags: htcondor
- name: "remove minicondor configuration"
yum:
name: minicondor
state: absent
tags: htcondor
- name: "setup singularity"
import_tasks: "singularity.yml"
tags: singularity
- name: "setup docker"
import_role: name=docker
tags: docker
- name: "setup htcondor test environment in docker containers"
import_role: name=docker-htcondor
tags: htcondor-containered, htcondor