Skip to content

Commit

Permalink
Fixed bug related to extraVolumeClaimTemplates rendering. (#120)
Browse files Browse the repository at this point in the history
* Fixed bug related to extraVolumeClaimTemplates rendering.

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Secchol and github-actions[bot] authored Aug 30, 2024
1 parent 62ea59b commit d97e4a0
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.1.4

### Fixed

- Updated StatefulSets templates in graphdb and proxy to properly render `extraVolumeClaimtemplates`.
Replaced `if` statement with `with`.

## Version 11.1.3

### 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.1.3
version: 11.1.4
appVersion: 10.7.3
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.1.3](https://img.shields.io/badge/Version-11.1.3-informational?style=flat-square)
![Version: 11.1.4](https://img.shields.io/badge/Version-11.1.4-informational?style=flat-square)
![AppVersion: 10.7.3](https://img.shields.io/badge/AppVersion-10.7.3-informational?style=flat-square)

<!--
Expand Down
2 changes: 1 addition & 1 deletion templates/graphdb/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
spec:
{{- toYaml .Values.import.volumeMount.volumeClaimTemplate.spec | nindent 8 }}
{{- end }}
{{- if .Values.extraVolumeClaimTemplates }}
{{- with .Values.extraVolumeClaimTemplates }}
{{- tpl (toYaml .) $ | nindent 4 }}
{{- end }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion templates/proxy/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
spec:
{{- toYaml .Values.proxy.persistence.volumeClaimTemplate.spec | nindent 8 }}
{{- end }}
{{- if .Values.proxy.extraVolumeClaimTemplates }}
{{- with .Values.proxy.extraVolumeClaimTemplates }}
{{- tpl (toYaml .) $ | nindent 4 }}
{{- end }}
{{- end }}
Expand Down

0 comments on commit d97e4a0

Please sign in to comment.