diff options
author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-05-11 12:26:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-11 12:26:57 +0200 |
commit | 92c1ef8d62fe4daf96319408f763f1bf33c7916a (patch) | |
tree | 318cab2003322a015046ae9bc2d765ac105dc82f /roles | |
parent | f4e1e89f88c6885a6f0be0e7b3eca296d646502b (diff) | |
download | openshift-92c1ef8d62fe4daf96319408f763f1bf33c7916a.tar.gz openshift-92c1ef8d62fe4daf96319408f763f1bf33c7916a.tar.bz2 openshift-92c1ef8d62fe4daf96319408f763f1bf33c7916a.tar.xz openshift-92c1ef8d62fe4daf96319408f763f1bf33c7916a.zip |
Update variable name to standard
It was agreed to name role variables as `r_ROLE_NAME_VARIABLE_NAME`. Giving it a try.
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_health_checker/openshift_checks/etcd_volume.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_health_checker/openshift_checks/etcd_volume.py b/roles/openshift_health_checker/openshift_checks/etcd_volume.py index df35ecb33..9e58177a5 100644 --- a/roles/openshift_health_checker/openshift_checks/etcd_volume.py +++ b/roles/openshift_health_checker/openshift_checks/etcd_volume.py @@ -28,7 +28,7 @@ class EtcdVolume(OpenShiftCheck): threshold = get_var( task_vars, - "etcd_device_usage_threshold_percent", + "r_openshift_health_checker_etcd_device_usage_threshold_percent", default=self.default_threshold_percent ) |