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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#!/bin/venv python
##############################################################################
# Copyright (c) 2018 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import yaml
import sys
compass_bin = "/opt/compass/bin"
sys.path.append(compass_bin)
import switch_virtualenv # noqa: F401
from ansible.errors import AnsibleError # noqa: E402
from ansible.plugins.lookup import LookupBase # noqa: E402
class LookupModule(LookupBase):
def read_yaml(self, yaml_path, key, default=None):
if not key:
return None
with open(yaml_path) as fd:
yaml_data = yaml.safe_load(fd)
if key in yaml_data:
return yaml_data[key]
else:
return default
def run(self, terms, variables=None, **kwargs):
res = []
if not isinstance(terms, list):
terms = [terms]
for term in terms:
params = term.split()
yaml_path = params[0]
param_dict = {
'key': None,
'default': None
}
try:
for param in params[1:]:
key, value = param.split('=')
assert(key in param_dict)
param_dict[key] = value
except (AttributeError, AssertionError), e:
raise AnsibleError(e)
data = self.read_yaml(yaml_path,
param_dict['key'],
param_dict['default'])
res.append(data)
return res
|