summaryrefslogtreecommitdiffstats
path: root/roles/openshift_logging/tasks
diff options
context:
space:
mode:
authorJeff Cantrill <jcantril@redhat.com>2017-08-25 09:00:10 -0400
committerJeff Cantrill <jcantril@redhat.com>2017-08-28 15:20:35 -0400
commitf14ec41fc954e2f1e2d5ec0505d6198f768926a0 (patch)
treecd19b4c8003febeba95e1b876706dfe6d207b922 /roles/openshift_logging/tasks
parent2b07b98262d7bacdb52fc08c0108c4c4b113ff5c (diff)
downloadopenshift-f14ec41fc954e2f1e2d5ec0505d6198f768926a0.tar.gz
openshift-f14ec41fc954e2f1e2d5ec0505d6198f768926a0.tar.bz2
openshift-f14ec41fc954e2f1e2d5ec0505d6198f768926a0.tar.xz
openshift-f14ec41fc954e2f1e2d5ec0505d6198f768926a0.zip
annotate the infra projects for logging to fix bz1480988
Diffstat (limited to 'roles/openshift_logging/tasks')
-rw-r--r--roles/openshift_logging/tasks/annotate_ops_projects.yaml17
-rw-r--r--roles/openshift_logging/tasks/install_logging.yaml1
2 files changed, 18 insertions, 0 deletions
diff --git a/roles/openshift_logging/tasks/annotate_ops_projects.yaml b/roles/openshift_logging/tasks/annotate_ops_projects.yaml
new file mode 100644
index 000000000..d4b33616a
--- /dev/null
+++ b/roles/openshift_logging/tasks/annotate_ops_projects.yaml
@@ -0,0 +1,17 @@
+---
+- oc_obj:
+ state: list
+ kind: project
+ name: "{{ item }}"
+ with_items: "{{ __default_logging_ops_projects }}"
+ register: __logging_ops_projects
+
+- name: Annotate Operations Projects
+ oc_edit:
+ kind: ns
+ name: "{{ item.item }}"
+ separator: '#'
+ content:
+ metadata#annotations#openshift.io/logging.ui.hostname: "{{ openshift_logging_kibana_ops_hostname }}"
+ with_items: "{{ __logging_ops_projects.results }}"
+ when: "{{ item.results.stderr is not defined }}"
diff --git a/roles/openshift_logging/tasks/install_logging.yaml b/roles/openshift_logging/tasks/install_logging.yaml
index d4a305fb8..654a7ce3e 100644
--- a/roles/openshift_logging/tasks/install_logging.yaml
+++ b/roles/openshift_logging/tasks/install_logging.yaml
@@ -220,6 +220,7 @@
when:
- openshift_logging_use_ops | bool
+- include: annotate_ops_projects.yaml
## Curator
- include_role: