gregory-ludwinski opened a new issue, #647:
URL: https://github.com/apache/spark-kubernetes-operator/issues/647
The Helm chart emits invalid YAML because it unconditionally renders block
scalars (|+) for config map entries even when no content is present. The use of
nindent under block scalars introduces leading blank lines, which are rejected
by strict YAML parsers such as Octopus.
This is the error:
YAML syntax error: (Line: 51, Col: 1, Idx: 1358) - (Line: 51, Col: 5, Idx:
1362): While scanning a literal block scalar, found extra spaces in first line.
When I look at line 51 in the rendered YAML, line 51 is an extra line with
only 4 spaces between "log4j2.properties: |+" and the comment "# Logging
Overrides":
```
data:
log4j2.properties: |+
# Logging Overrides
rootLogger.level=INFO
```
It is a minor thing, but I just wanted to make you aware. This occurs with
the default values.yaml.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]