Skip to content

Commit

Permalink
fix(zeppelin): escape quote spark int settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuildy committed Jul 28, 2022
1 parent 20e8e3a commit a02898b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/zeppelin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apiVersion: v2
name: zeppelin
description: Apache Zeppelin with Apache Spark
type: application
version: 0.5.3
version: 0.5.4
appVersion: 0.10.1
engine: gotpl
home: https://github.com/datatok/helm-data-lake
Expand Down
4 changes: 2 additions & 2 deletions charts/zeppelin/templates/_int_spark_settings.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
{{- range $k, $v := .Values.spark.config }}
"{{ $k }}": {
"propertyName": "{{$k}}",
"defaultValue": "{{$v}}",
"defaultValue": {{$v | quote}},
"type": "string",
"description" : "From spark.confg"
},
{{- end }}
{{- range $k, $v := .Values.spark.interpreterProperties }}
"{{ $k }}": {
"propertyName": "{{$k}}",
"defaultValue": "{{$v.value}}",
"defaultValue": {{$v.value | quote}},
"type": "{{$v.type}}",
"description" : "{{$v.description}} (from spark.interpreterProperties)"
},
Expand Down

0 comments on commit a02898b

Please sign in to comment.