From af71f7e983534238dab5272c19a10d8db55d0da0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20M=C3=BCller?= Date: Thu, 22 Apr 2021 21:48:32 +0200 Subject: [PATCH] removed minicondor configuration --- play.yml | 12 ++++++++---- roles/docker-htcondor/tasks/main.yml | 4 ++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/play.yml b/play.yml index 69ea14a..a8f0249 100644 --- a/play.yml +++ b/play.yml @@ -3,8 +3,7 @@ tasks: - name: "install tools" yum: - name: [ "vim-enhanced", "htop", "screen", "bind-utils", "nmap-ncat", - "net-tools" ] + name: [ vim-enhanced, htop, screen, bind-utils, nmap-ncat, net-tools ] state: present - name: "install htcondor repo" @@ -12,11 +11,16 @@ name: https://research.cs.wisc.edu/htcondor/repo/8.9/htcondor-release-current.el7.noarch.rpm state: present - - name: "install htcondor software and minicondor configuration" + - name: "install htcondor software " yum: - name: [ "htcondor-ce", "minicondor" ] + name: htcondor-ce state: present + - name: "remove minicondor configuration" + yum: + name: minicondor + state: absent + - name: "setup singularity" import_tasks: "singularity.yml" tags: singularity diff --git a/roles/docker-htcondor/tasks/main.yml b/roles/docker-htcondor/tasks/main.yml index 1e6cc49..b223b62 100644 --- a/roles/docker-htcondor/tasks/main.yml +++ b/roles/docker-htcondor/tasks/main.yml @@ -109,6 +109,10 @@ name: condor state: present +# TODO: reserve some address using docker_network_info and assign as aux +# address to enable cm to get a static address in order to be reachable from +# htcondor running on docker host to enable submitting jobs. + - name: "run htcondor containers" docker_container: name: "condor-{{item}}"