diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-08-30 15:03:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-30 15:03:33 -0400 |
commit | 75ff16c54634ef3eebfb0eeead19c090de105f42 (patch) | |
tree | 75ba5e8eb44347001cb8a65ccba7568c5f39e0cd /roles | |
parent | a5986f46b1249e38fc4ff8bab25b911fc51f4ada (diff) | |
parent | a8b3c58ecbcb5f64dabd44b8efadd4832527bc83 (diff) | |
download | openshift-75ff16c54634ef3eebfb0eeead19c090de105f42.tar.gz openshift-75ff16c54634ef3eebfb0eeead19c090de105f42.tar.bz2 openshift-75ff16c54634ef3eebfb0eeead19c090de105f42.tar.xz openshift-75ff16c54634ef3eebfb0eeead19c090de105f42.zip |
Merge pull request #2386 from sdodson/metrics-dynamic
Enable metrics dynamic storage
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_metrics/tasks/install.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_metrics/tasks/install.yml b/roles/openshift_metrics/tasks/install.yml index 9e254aca7..9c4eb22d7 100644 --- a/roles/openshift_metrics/tasks/install.yml +++ b/roles/openshift_metrics/tasks/install.yml @@ -71,7 +71,7 @@ set_fact: deployer_cmd: "{{ openshift.common.client_binary }} process -f \ {{ metrics_template_dir }}/metrics-deployer.yaml -v \ - HAWKULAR_METRICS_HOSTNAME={{ metrics_hostname }},USE_PERSISTENT_STORAGE={{metrics_persistence | string | lower }},METRIC_DURATION={{ openshift.hosted.metrics.duration }},METRIC_RESOLUTION={{ openshift.hosted.metrics.resolution }}{{ image_prefix }}{{ image_version }},MODE={{ deployment_mode }} \ + HAWKULAR_METRICS_HOSTNAME={{ metrics_hostname }},USE_PERSISTENT_STORAGE={{metrics_persistence | string | lower }},DYNAMICALLY_PROVISION_STORAGE={{metrics_dynamic_vol | string | lower }},METRIC_DURATION={{ openshift.hosted.metrics.duration }},METRIC_RESOLUTION={{ openshift.hosted.metrics.resolution }}{{ image_prefix }}{{ image_version }},MODE={{ deployment_mode }} \ | {{ openshift.common.client_binary }} --namespace openshift-infra \ --config={{ openshift_metrics_kubeconfig }} \ create -o name -f -" |