Skip to content

Commit 660bafe

Browse files
committed
Updating default behavior for installing metrics and logging. Separating out uninstall to own variable
1 parent 9240e0d commit 660bafe

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

roles/openshift_logging/defaults/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ openshift_logging_nodeselector: null
77
openshift_logging_labels: {}
88
openshift_logging_label_key: ""
99
openshift_logging_label_value: ""
10-
openshift_logging_install_logging: True
10+
openshift_logging_install_logging: False
11+
openshift_logging_uninstall_logging: False
1112

1213
openshift_logging_purge_logging: False
1314
openshift_logging_image_pull_secret: ""

roles/openshift_logging/tasks/main.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@
3030
check_mode: no
3131
become: no
3232

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
3536

36-
- include: "{{ role_path }}/tasks/delete_logging.yaml"
37+
- include: delete_logging.yaml
3738
when:
38-
- not openshift_logging_install_logging | default(false) | bool
39+
- openshift_logging_uninstall_logging | default(false) | bool
3940

4041
- name: Cleaning up local temp dir
4142
local_action: file path="{{local_tmp.stdout}}" state=absent

roles/openshift_metrics/defaults/main.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
openshift_metrics_start_cluster: True
3-
openshift_metrics_install_metrics: True
3+
openshift_metrics_install_metrics: False
4+
openshift_metrics_uninstall_metrics: False
45
openshift_metrics_startup_timeout: 500
56

67
openshift_metrics_hawkular_replicas: 1

roles/openshift_metrics/tasks/main.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,13 @@
4343
check_mode: no
4444
tags: metrics_init
4545

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
4753

4854
- include: uninstall_hosa.yaml
4955
when: not openshift_metrics_install_hawkular_agent | bool

0 commit comments

Comments
 (0)