Skip to content

Commit 02878fb

Browse files
committed
docs: no cert to start a pilot
1 parent db98c79 commit 02878fb

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
@@ -181,8 +181,8 @@ Pilots started when not controlled by the SiteDirector
181181

182182
You should keep reading if your resources include IAAS and IAAC type of resources, like Virtual Machines.
183183
If this is the case, then you need to:
184-
- provide a certificate, or a proxy, to start the pilot;
185-
- such certificate/proxy should have the `GenericPilot` property;
184+
- provide a proxy to start the pilot;
185+
- such proxy should have the `GenericPilot` property;
186186
- 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>`_);
187187
- find a way to start the pilots: DIRAC will make sure to create VirtualMachine contextualized to start DIRAC Pilots.
188188

@@ -218,14 +218,6 @@ A simple example using the LHCbPilot extension follows::
218218
CE_NAME="${i#*=}"
219219
shift
220220
;;
221-
--vm-uuid=*)
222-
VM_UUID="${i#*=}"
223-
shift
224-
;;
225-
--vmtype=*)
226-
VMTYPE="${i#*=}"
227-
shift
228-
;;
229221
*)
230222
# unknown option
231223
;;
@@ -240,10 +232,6 @@ A simple example using the LHCbPilot extension follows::
240232
export CONTEXTDIR=`readlink -f \`dirname $0\``
241233

242234
export TMPDIR=/scratch/
243-
export EDG_WL_SCRATCH=$TMPDIR
244-
245-
# Needed to find software area
246-
export VO_LHCB_SW_DIR=/cvmfs/lhcb.cern.ch
247235

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

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

264250
#run the dirac-pilot script
265251
python dirac-pilot.py \
266-
--project LHCb \
267252
--Name "$CE_NAME" \
268253
--name "$1" \
269-
--cert \
270-
--certLocation=/scratch/dirac/etc/grid-security \
271254

272255
Centralised Pilot Logging
273256
===========================

0 commit comments

Comments
 (0)