diff options
author | Zohar Galor <zgalor@redhat.com> | 2017-10-18 15:11:45 +0300 |
---|---|---|
committer | Zohar Galor <zgalor@redhat.com> | 2017-10-18 15:13:13 +0300 |
commit | 07e43c4bdd727be31f99b159f7ac4ac65e6b9a14 (patch) | |
tree | 02102199e4cb8bdd0579a3acdf79a0ad678bccfc /roles | |
parent | 63b77fbe00e4c724452a0256c6fdafc165755962 (diff) | |
download | openshift-07e43c4bdd727be31f99b159f7ac4ac65e6b9a14.tar.gz openshift-07e43c4bdd727be31f99b159f7ac4ac65e6b9a14.tar.bz2 openshift-07e43c4bdd727be31f99b159f7ac4ac65e6b9a14.tar.xz openshift-07e43c4bdd727be31f99b159f7ac4ac65e6b9a14.zip |
Fix typo in setting prom-proxy memory limit
bz: https://bugzilla.redhat.com/show_bug.cgi?id=1493368
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_prometheus/templates/prometheus_deployment.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_prometheus/templates/prometheus_deployment.j2 b/roles/openshift_prometheus/templates/prometheus_deployment.j2 index 98c117f19..66eab6df4 100644 --- a/roles/openshift_prometheus/templates/prometheus_deployment.j2 +++ b/roles/openshift_prometheus/templates/prometheus_deployment.j2 @@ -38,7 +38,7 @@ spec: cpu: "{{openshift_prometheus_oauth_proxy_cpu_requests}}" {% endif %} limits: -{% if openshift_prometheus_memory_requests_limit_proxy is defined and openshift_prometheus_oauth_proxy_memory_limit is not none %} +{% if openshift_prometheus_oauth_proxy_memory_limit is defined and openshift_prometheus_oauth_proxy_memory_limit is not none %} memory: "{{openshift_prometheus_oauth_proxy_memory_limit}}" {% endif %} {% if openshift_prometheus_oauth_proxy_cpu_limit is defined and openshift_prometheus_oauth_proxy_cpu_limit is not none %} |