Merge pull request #12790 from justinsb/fix_12787

Fix escaping problem in kube-scheduler manifest
This commit is contained in:
Marek Grabowski 2015-08-17 14:30:29 +02:00
commit 9d1a48d5f6

View File

@ -1,4 +1,8 @@
{% set params = "{{pillar['log_level']}}" -%}
{% set params = "" -%}
{% if pillar['log_level'] is defined -%}
{% set params = params + " " + pillar['log_level'] -%}
{% endif -%}
# test_args has to be kept at the end, so they'll overwrite any prior configuration
{% if pillar['scheduler_test_args'] is defined -%}