summaryrefslogtreecommitdiffstats
path: root/roles/openshift_metrics
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-09-22 20:18:30 -0400
committerGitHub <noreply@github.com>2017-09-22 20:18:30 -0400
commit6bee051f9850b6393edc60860993d84cf1e38989 (patch)
tree4f9fd740df36327fe15c747d14a6a745df522172 /roles/openshift_metrics
parent4d0bbb8a0be72ca4b8008bbcce8383ea0f704377 (diff)
parent660bafe9cd0adbfa965bb3f8f31d6c043a0dc5d6 (diff)
downloadopenshift-6bee051f9850b6393edc60860993d84cf1e38989.tar.gz
openshift-6bee051f9850b6393edc60860993d84cf1e38989.tar.bz2
openshift-6bee051f9850b6393edc60860993d84cf1e38989.tar.xz
openshift-6bee051f9850b6393edc60860993d84cf1e38989.zip
Merge pull request #5511 from ewolinetz/logging_metrics_default_fix
Updating default behavior for installing metrics and logging. Separat…
Diffstat (limited to 'roles/openshift_metrics')
-rw-r--r--roles/openshift_metrics/defaults/main.yaml3
-rw-r--r--roles/openshift_metrics/tasks/main.yaml8
2 files changed, 9 insertions, 2 deletions
diff --git a/roles/openshift_metrics/defaults/main.yaml b/roles/openshift_metrics/defaults/main.yaml
index 354008206..ed0182ba8 100644
--- a/roles/openshift_metrics/defaults/main.yaml
+++ b/roles/openshift_metrics/defaults/main.yaml
@@ -1,6 +1,7 @@
---
openshift_metrics_start_cluster: True
-openshift_metrics_install_metrics: True
+openshift_metrics_install_metrics: False
+openshift_metrics_uninstall_metrics: False
openshift_metrics_startup_timeout: 500
openshift_metrics_hawkular_replicas: 1
diff --git a/roles/openshift_metrics/tasks/main.yaml b/roles/openshift_metrics/tasks/main.yaml
index eaabdd20f..0461039fc 100644
--- a/roles/openshift_metrics/tasks/main.yaml
+++ b/roles/openshift_metrics/tasks/main.yaml
@@ -43,7 +43,13 @@
check_mode: no
tags: metrics_init
-- include: "{{ (openshift_metrics_install_metrics | bool) | ternary('install_metrics.yaml','uninstall_metrics.yaml') }}"
+- include: install_metrics.yaml
+ when:
+ - openshift_metrics_install_metrics | default(false) | bool
+
+- include: uninstall_metrics.yaml
+ when:
+ - openshift_metrics_uninstall_metrics | default(false) | bool
- include: uninstall_hosa.yaml
when: not openshift_metrics_install_hawkular_agent | bool