annotate_ops_projects.yaml 484 B

1234567891011121314151617
  1. ---
  2. - oc_obj:
  3. state: list
  4. kind: project
  5. name: "{{ item }}"
  6. with_items: "{{ __default_logging_ops_projects }}"
  7. register: __logging_ops_projects
  8. - name: Annotate Operations Projects
  9. oc_edit:
  10. kind: ns
  11. name: "{{ item.item }}"
  12. separator: '#'
  13. content:
  14. metadata#annotations#openshift.io/logging.ui.hostname: "{{ openshift_logging_kibana_ops_hostname }}"
  15. with_items: "{{ __logging_ops_projects.results }}"
  16. when: item.results.stderr is not defined