Sfoglia il codice sorgente

Merge pull request #8900 from vrutkovs/install-grafana

Deploy grafana if openshift_hosted_grafana_deploy is set
Vadim Rutkovsky 6 anni fa
parent
commit
60e9f13222
2 ha cambiato i file con 8 aggiunte e 0 eliminazioni
  1. 3 0
      inventory/hosts.example
  2. 5 0
      playbooks/common/private/components.yml

+ 3 - 0
inventory/hosts.example

@@ -692,6 +692,9 @@ debug_level=2
 #openshift_prometheus_alertmanager_storage_type=pvc
 #openshift_prometheus_alertbuffer_storage_type=pvc
 
+# Grafana deployment, requires Prometheus
+#openshift_hosted_grafana_deploy=true
+
 # Configure the multi-tenant SDN plugin (default is 'redhat/openshift-ovs-subnet')
 # os_sdn_network_plugin_name='redhat/openshift-ovs-multitenant'
 

+ 5 - 0
playbooks/common/private/components.yml

@@ -34,6 +34,11 @@
 - import_playbook: ../../openshift-prometheus/private/config.yml
   when: openshift_hosted_prometheus_deploy | default(false) | bool
 
+- import_playbook: ../../openshift-grafana/private/config.yml
+  when:
+  - openshift_hosted_prometheus_deploy | default(false) | bool
+  - openshift_hosted_grafana_deploy | default(false) | bool
+
 - import_playbook: ../../openshift-monitor-availability/private/config.yml
   when: openshift_monitor_availability_install | default(false) | bool