diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-06-06 13:40:18 -0400 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2015-06-06 13:44:57 -0400 |
commit | 2283750d0ad8b24a823f034ebd6172526c535943 (patch) | |
tree | 86f98f293cda97848e072aa292d2d86c017caed9 /playbooks/common/openshift-node/config.yml | |
parent | af8b0b25f5e572ab20e3c3efdba596bae7ae7563 (diff) | |
download | openshift-2283750d0ad8b24a823f034ebd6172526c535943.tar.gz openshift-2283750d0ad8b24a823f034ebd6172526c535943.tar.bz2 openshift-2283750d0ad8b24a823f034ebd6172526c535943.tar.xz openshift-2283750d0ad8b24a823f034ebd6172526c535943.zip |
add use_fluentd to openshift_facts
- Move use_fluentd into openshift_facts proper
- default use_fluentd to False unless deployment_type == origin
Diffstat (limited to 'playbooks/common/openshift-node/config.yml')
-rw-r--r-- | playbooks/common/openshift-node/config.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index 70711e39b..55abedfe7 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -95,8 +95,10 @@ dest: "{{ openshift_node_cert_dir }}" roles: - openshift_node - - { role: openshift_sdn_node, when: openshift.common.use_openshift_sdn | bool } - - { role: fluentd_node, when: openshift.common.use_fluentd | bool } + - role: openshift_sdn_node + when: openshift.common.use_openshift_sdn | bool + - role: fluentd_node + when: openshift.common.use_fluentd | bool tasks: - name: Create group for deployment type group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }} |