Browse Source

Surrounding node selector values with quotes

ewolinetz 8 years ago
parent
commit
124f5b9d40

+ 1 - 1
roles/openshift_logging/templates/curator.j2

@@ -31,7 +31,7 @@ spec:
 {% if curator_node_selector is iterable and curator_node_selector | length > 0 %}
       nodeSelector:
 {% for key, value in curator_node_selector.iteritems() %}
-        {{key}}: {{value}}
+        {{key}}: "{{value}}"
 {% endfor %}
 {% endif %}
       containers:

+ 1 - 1
roles/openshift_logging/templates/es.j2

@@ -33,7 +33,7 @@ spec:
 {% if es_node_selector is iterable and es_node_selector | length > 0 %}
       nodeSelector:
 {% for key, value in es_node_selector.iteritems() %}
-        {{key}}: {{value}}
+        {{key}}: "{{value}}"
 {% endfor %}
 {% endif %}
       containers:

+ 1 - 1
roles/openshift_logging/templates/kibana.j2

@@ -30,7 +30,7 @@ spec:
 {% if kibana_node_selector is iterable and kibana_node_selector | length > 0 %}
       nodeSelector:
 {% for key, value in kibana_node_selector.iteritems() %}
-        {{key}}: {{value}}
+        {{key}}: "{{value}}"
 {% endfor %}
 {% endif %}
       containers: