Skip to content

Commit

Permalink
Merge pull request #156 from Ontotext-AD/fix/GDB-11494-configurations…
Browse files Browse the repository at this point in the history
…-rendering

GDB-11494: Avoid rendering GraphDB properties in quotes
  • Loading branch information
mihailradkov authored Jan 15, 2025
2 parents 5e966e8 + b4e28b9 commit ecf33e7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# GraphDB Helm chart release notes

## Version 11.3.3

### Fixed

- Removed `| quote` from rendering `configuration.properties` in properties ConfigMaps in order to allow configuring GraphDB with
non-string properties.

## Version 11.3.2

### New
Expand Down
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apiVersion: v2
name: graphdb
description: GraphDB is a highly efficient, scalable and robust graph database with RDF and SPARQL support.
type: application
version: 11.3.2
version: 11.3.3
appVersion: 10.8.2
kubeVersion: ^1.26.0-0
home: https://graphdb.ontotext.com/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Helm Chart for GraphDB

[![CI](https://github.com/Ontotext-AD/graphdb-helm/actions/workflows/ci.yml/badge.svg)](https://github.com/Ontotext-AD/graphdb-helm/actions/workflows/ci.yml)
![Version: 11.3.2](https://img.shields.io/badge/Version-11.3.2-informational?style=flat-square)
![Version: 11.3.3](https://img.shields.io/badge/Version-11.3.3-informational?style=flat-square)
![AppVersion: 10.8.2](https://img.shields.io/badge/AppVersion-10.8.2-informational?style=flat-square)

<!--
Expand Down
2 changes: 1 addition & 1 deletion templates/graphdb/configmap-properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data:
##### Overrides from values.yaml #####
{{- range $key, $val := .Values.configuration.properties -}}
{{- if ne $val nil }}
{{ $key }}={{ tpl ($val | toString) $ | quote }}
{{ $key }}={{ tpl ($val | toString) $ }}
{{- end }}
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion templates/proxy/configmap-properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ data:
##### Overrides from values.yaml #####
{{- range $key, $val := .Values.proxy.configuration.properties -}}
{{- if ne $val nil }}
{{ $key }}={{ tpl ($val | toString) $ | quote }}
{{ $key }}={{ tpl ($val | toString) $ }}
{{- end }}
{{- end -}}
{{- end -}}
Expand Down

0 comments on commit ecf33e7

Please sign in to comment.