File tree 4 files changed +16
-7
lines changed
4 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ openshift_logging_nodeselector: null
7
7
openshift_logging_labels : {}
8
8
openshift_logging_label_key : " "
9
9
openshift_logging_label_value : " "
10
- openshift_logging_install_logging : True
10
+ openshift_logging_install_logging : False
11
+ openshift_logging_uninstall_logging : False
11
12
12
13
openshift_logging_purge_logging : False
13
14
openshift_logging_image_pull_secret : " "
Original file line number Diff line number Diff line change 30
30
check_mode : no
31
31
become : no
32
32
33
- - include : " {{ role_path }}/tasks/install_logging.yaml"
34
- when : openshift_logging_install_logging | default(false) | bool
33
+ - include : install_logging.yaml
34
+ when :
35
+ - openshift_logging_install_logging | default(false) | bool
35
36
36
- - include : " {{ role_path }}/tasks/ delete_logging.yaml"
37
+ - include : delete_logging.yaml
37
38
when :
38
- - not openshift_logging_install_logging | default(false) | bool
39
+ - openshift_logging_uninstall_logging | default(false) | bool
39
40
40
41
- name : Cleaning up local temp dir
41
42
local_action : file path="{{local_tmp.stdout}}" state=absent
Original file line number Diff line number Diff line change 1
1
---
2
2
openshift_metrics_start_cluster : True
3
- openshift_metrics_install_metrics : True
3
+ openshift_metrics_install_metrics : False
4
+ openshift_metrics_uninstall_metrics : False
4
5
openshift_metrics_startup_timeout : 500
5
6
6
7
openshift_metrics_hawkular_replicas : 1
Original file line number Diff line number Diff line change 43
43
check_mode : no
44
44
tags : metrics_init
45
45
46
- - include : " {{ (openshift_metrics_install_metrics | bool) | ternary('install_metrics.yaml','uninstall_metrics.yaml') }}"
46
+ - include : install_metrics.yaml
47
+ when :
48
+ - openshift_metrics_install_metrics | default(false) | bool
49
+
50
+ - include : uninstall_metrics.yaml
51
+ when :
52
+ - openshift_metrics_uninstall_metrics | default(false) | bool
47
53
48
54
- include : uninstall_hosa.yaml
49
55
when : not openshift_metrics_install_hawkular_agent | bool
You can’t perform that action at this time.
0 commit comments