diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-10-18 11:15:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-18 11:15:50 -0400 |
commit | 8ef9ee879216d3ce0309daf980f06817a8489f30 (patch) | |
tree | 3ee7490076c073e7f02a448712abe07476b27a0d | |
parent | 36d6b8ab6ee42a8a98321ae371398cf520ae8b71 (diff) | |
parent | 07e43c4bdd727be31f99b159f7ac4ac65e6b9a14 (diff) | |
download | openshift-8ef9ee879216d3ce0309daf980f06817a8489f30.tar.gz openshift-8ef9ee879216d3ce0309daf980f06817a8489f30.tar.bz2 openshift-8ef9ee879216d3ce0309daf980f06817a8489f30.tar.xz openshift-8ef9ee879216d3ce0309daf980f06817a8489f30.zip |
Merge pull request #5789 from zgalor/fix_limit_typo
Fix typo in setting prom-proxy memory limit
-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 %} |