Skip to content

Commit 3e57123

Browse files
authored
Merge pull request #8178 from fstagni/90_update_pilot_instr
docs: no cert to start a pilot
2 parents 10ef53a + 02878fb commit 3e57123

File tree

1 file changed

+2
-19
lines changed
  • docs/source/AdministratorGuide/Systems/WorkloadManagement/Pilots

1 file changed

+2
-19
lines changed

docs/source/AdministratorGuide/Systems/WorkloadManagement/Pilots/index.rst

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ Pilots started when not controlled by the SiteDirector
180180

181181
You should keep reading if your resources include IAAS and IAAC type of resources, like Virtual Machines.
182182
If this is the case, then you need to:
183-
- provide a certificate, or a proxy, to start the pilot;
184-
- such certificate/proxy should have the `GenericPilot` property;
183+
- provide a proxy to start the pilot;
184+
- such proxy should have the `GenericPilot` property;
185185
- in case of multi-VO environment, the Pilot should set the `/Resources/Computing/CEDefaults/VirtualOrganization` (as done e.g. by `vm-pilot <https://github.com/DIRACGrid/DIRAC/blob/integration/src/DIRAC/WorkloadManagementSystem/Utilities/CloudBootstrap/vm-pilot#L122>`_);
186186
- find a way to start the pilots: DIRAC will make sure to create VirtualMachine contextualized to start DIRAC Pilots.
187187

@@ -217,14 +217,6 @@ A simple example using the LHCbPilot extension follows::
217217
CE_NAME="${i#*=}"
218218
shift
219219
;;
220-
--vm-uuid=*)
221-
VM_UUID="${i#*=}"
222-
shift
223-
;;
224-
--vmtype=*)
225-
VMTYPE="${i#*=}"
226-
shift
227-
;;
228220
*)
229221
# unknown option
230222
;;
@@ -239,10 +231,6 @@ A simple example using the LHCbPilot extension follows::
239231
export CONTEXTDIR=`readlink -f \`dirname $0\``
240232

241233
export TMPDIR=/scratch/
242-
export EDG_WL_SCRATCH=$TMPDIR
243-
244-
# Needed to find software area
245-
export VO_LHCB_SW_DIR=/cvmfs/lhcb.cern.ch
246234

247235
# Clear it to avoid problems ( be careful if there is more than one agent ! )
248236
rm -rf /tmp/area/*
@@ -251,22 +239,17 @@ A simple example using the LHCbPilot extension follows::
251239
DIRAC_PILOT='https://lhcb-portal-dirac.cern.ch/pilot/dirac-pilot.py'
252240
DIRAC_PILOT_TOOLS='https://lhcb-portal-dirac.cern.ch/pilot/pilotTools.py'
253241
DIRAC_PILOT_COMMANDS='https://lhcb-portal-dirac.cern.ch/pilot/pilotCommands.py'
254-
LHCbDIRAC_PILOT_COMMANDS='https://lhcb-portal-dirac.cern.ch/pilot/LHCbPilotCommands.py'
255242

256243
#
257244
##get the necessary scripts
258245
wget --no-check-certificate -O dirac-pilot.py $DIRAC_PILOT
259246
wget --no-check-certificate -O pilotTools.py $DIRAC_PILOT_TOOLS
260247
wget --no-check-certificate -O pilotCommands.py $DIRAC_PILOT_COMMANDS
261-
wget --no-check-certificate -O LHCbPilotCommands.py $LHCbDIRAC_PILOT_COMMANDS
262248

263249
#run the dirac-pilot script
264250
python dirac-pilot.py \
265-
--project LHCb \
266251
--Name "$CE_NAME" \
267252
--name "$1" \
268-
--cert \
269-
--certLocation=/scratch/dirac/etc/grid-security \
270253

271254
Centralised Pilot Logging
272255
===========================

0 commit comments

Comments
 (0)