blob: cb3ecfc4876655849c0630e48b5c7c2adf22dda8 (
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
|
# ansible-role-k8s-tripleo
You can call this module directly:
```
- name: Test hieradata
parse_tripleo_hiera:
hieradata:
glance::api::v1: True
schema:
glance::api::v1: DEFAULT.enable_glance_v1
register: result
- name: Check values
fail:
msg: "DEFAULT not in conf_dict"
when:
- not result.conf_dict['DEFAULT']
- not result.conf_dict['DEFAULT']['enable_glance_v1']
```
Or just include the role:
```
- name: Test include role
include_role:
name: 'ansible-role-k8s-tripleo'
vars:
hieradata:
glance::api::v1: True
schema:
glance::api::v1: DEFAULT.enable_glance_v1
fact_variable: 'glance_config'
- name: Check fact glance_config
fail:
msg: "glance_config not set"
when:
- not glance_config
```
|