Commit 0ff8dd45 authored by Justin Santa Barbara's avatar Justin Santa Barbara

Fix escaping problem in kube-scheduler manifest

'{{pillar[log_level]}}' was appearing literally in the command line, instead of being substituted. Fixes #12787
parent e9dd3c55
{% 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 -%}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment