blob: 4ddb14f714538fde77ed2b910cd6d247f18cdd45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import logging
from teuthology import misc as teuthology
from tasks.vip import subst_vip
log = logging.getLogger(__name__)
def task(ctx, config):
"""
Execute some python code.
tasks:
- python:
host.a: |
import boto3
c = boto3.resource(...)
The provided dict is normally indexed by role. You can also include a
'sudo: false' key to run the code without sudo.
tasks:
- python:
sudo: false
host.b: |
import boto3
c = boto3.resource(...)
"""
assert isinstance(config, dict), "task python got invalid config"
testdir = teuthology.get_testdir(ctx)
sudo = config.pop('sudo', True)
for role, code in config.items():
(remote,) = ctx.cluster.only(role).remotes.keys()
log.info('Running python on role %s host %s', role, remote.name)
log.info(code)
args=[
'TESTDIR={tdir}'.format(tdir=testdir),
'python3',
]
if sudo:
args = ['sudo'] + args
remote.run(args=args, stdin=subst_vip(ctx, code))
|