summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/openshift_hosted.yml
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2017-02-01 15:23:07 -0500
committerAndrew Butcher <abutcher@redhat.com>2017-02-01 15:55:22 -0500
commitd20a7403748438e7d9651d83d1b513a27ba9b9a4 (patch)
treefafd0f443ff0174f7ef984d9d177079ed1b64aa5 /playbooks/common/openshift-cluster/openshift_hosted.yml
parent287282e3a1c36ea2c7bc9eb14e463fd347c7d95a (diff)
downloadopenshift-d20a7403748438e7d9651d83d1b513a27ba9b9a4.tar.gz
openshift-d20a7403748438e7d9651d83d1b513a27ba9b9a4.tar.bz2
openshift-d20a7403748438e7d9651d83d1b513a27ba9b9a4.tar.xz
openshift-d20a7403748438e7d9651d83d1b513a27ba9b9a4.zip
Wrap openshift_hosted_logging include_role within a block.
Diffstat (limited to 'playbooks/common/openshift-cluster/openshift_hosted.yml')
-rw-r--r--playbooks/common/openshift-cluster/openshift_hosted.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/playbooks/common/openshift-cluster/openshift_hosted.yml b/playbooks/common/openshift-cluster/openshift_hosted.yml
index 34f1a979b..143bc37a2 100644
--- a/playbooks/common/openshift-cluster/openshift_hosted.yml
+++ b/playbooks/common/openshift-cluster/openshift_hosted.yml
@@ -47,12 +47,15 @@
when: ( openshift.common.version_gte_3_3_or_1_3 | bool ) and ( openshift_hosted_manage_registry | default(true) | bool ) and not (openshift.docker.hosted_registry_insecure | default(false) | bool)
- name: Update master-config for publicLoggingURL
- hosts: masters:!oo_first_master
+ hosts: oo_masters_to_config:!oo_first_master
+ tags:
+ - hosted
pre_tasks:
- set_fact:
logging_hostname: "{{ openshift_hosted_logging_hostname | default('kibana.' ~ (openshift_master_default_subdomain | default('router.default.svc.cluster.local', true))) }}"
tasks:
- - include_role:
- name: openshift_hosted_logging
- tasks_from: update_master_config
+ - block:
+ - include_role:
+ name: openshift_hosted_logging
+ tasks_from: update_master_config
when: openshift_hosted_logging_deploy | default(false) | bool