File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Although it is limited only to Kubernetes resources it makes it very easy to use
13
13
14
14
ONLY for object-based templates (thus not string templates) the values can be set using the placeholder notation from Qute:
15
15
``` yaml
16
- value : " {string.value.reference }"
16
+ value : " {string.value}"
17
17
` ` `
18
18
With this standard notation, the result value will be always encoded in double quotes:
19
19
` ` ` yaml
@@ -22,7 +22,7 @@ Although it is limited only to Kubernetes resources it makes it very easy to use
22
22
Since there is no simple way to check if the referenced value is a string or other value
23
23
(boolean, numeric, etc) for non-string values, user should use double brackets:
24
24
` ` ` yaml
25
- value : " {{nonstring.value.reference }}"
25
+ value : " {{nonstring.value}}"
26
26
` ` `
27
27
what would result in a value without enclosed double quotes in the produced yaml:
28
28
` ` ` yaml
You can’t perform that action at this time.
0 commit comments