diff options
author | Jeff Cantrill <jcantrill@users.noreply.github.com> | 2016-11-30 12:12:14 -0500 |
---|---|---|
committer | Jeff Cantrill <jcantril@redhat.com> | 2017-01-17 11:45:04 -0500 |
commit | f3f1f610c9e0fdf8115dd8ea61e647080ad42006 (patch) | |
tree | eecee6d3d448914af9ce075b31fdf84ecf801b97 /roles/openshift_metrics/defaults | |
parent | 04c1500801f4d88635001bda1e4f73473fe8e33a (diff) | |
download | openshift-f3f1f610c9e0fdf8115dd8ea61e647080ad42006.tar.gz openshift-f3f1f610c9e0fdf8115dd8ea61e647080ad42006.tar.bz2 openshift-f3f1f610c9e0fdf8115dd8ea61e647080ad42006.tar.xz openshift-f3f1f610c9e0fdf8115dd8ea61e647080ad42006.zip |
prefix vars with metrics role (#4)
Diffstat (limited to 'roles/openshift_metrics/defaults')
-rw-r--r-- | roles/openshift_metrics/defaults/main.yaml | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/roles/openshift_metrics/defaults/main.yaml b/roles/openshift_metrics/defaults/main.yaml index cb4fbdee2..8d2ff8a62 100644 --- a/roles/openshift_metrics/defaults/main.yaml +++ b/roles/openshift_metrics/defaults/main.yaml @@ -1,17 +1,18 @@ --- -image_prefix: docker.io/openshift/origin- -image_version: latest -master_url: https://kubernetes.default.svc.cluster.local +openshift_metrics_image_prefix: docker.io/openshift/origin- +openshift_metrics_image_version: latest +openshift_metrics_master_url: https://kubernetes.default.svc.cluster.local +openshift_metrics_project: openshift-infra -hawkular_user_write_access: False -hawkular_cassandra_nodes: 1 -hawkular_cassandra_storage_type: emptydir -hawkular_cassandra_pv_prefix: metrics-cassandra -hawkular_cassandra_pv_size: 10Gi +openshift_metrics_hawkular_user_write_access: False +openshift_metrics_hawkular_cassandra_nodes: 1 +openshift_metrics_hawkular_cassandra_storage_type: emptydir +openshift_metrics_hawkular_cassandra_pv_prefix: metrics-cassandra +openshift_metrics_hawkular_cassandra_pv_size: 10Gi -heapster_standalone: False -heapster_allowed_users: system:master-proxy +openshift_metrics_heapster_standalone: False +openshift_metrics_heapster_allowed_users: system:master-proxy -metrics_duration: 7 -metrics_resolution: 15s -metrics_node_id: nodename +openshift_metrics_duration: 7 +openshift_metrics_resolution: 15s +openshift_metrics_node_id: nodename |