Skip to content

Commit f0212af

Browse files
fix: helm chart flux-config - values.yaml for generic-secret (#35)
--------- Co-authored-by: AribaOpensource <AribaOpensource@users.noreply.github.com>
1 parent 13b418f commit f0212af

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

helm/charts/flux-config/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ icon: "https://avatars.githubusercontent.com/u/52158677?s=200&v=4"
1717
# This is the chart version. This version number should be incremented each time you make changes
1818
# to the chart and its templates, including the app version.
1919
# Versions are expected to follow Semantic Versioning (https://semver.org/)
20-
version: 0.0.19
20+
version: 0.0.20
2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.

helm/charts/flux-config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# flux-config
44

5-
![Version: 0.0.19](https://img.shields.io/badge/Version-0.0.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.6.0](https://img.shields.io/badge/AppVersion-2.6.0-informational?style=flat-square)
5+
![Version: 0.0.20](https://img.shields.io/badge/Version-0.0.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.6.0](https://img.shields.io/badge/AppVersion-2.6.0-informational?style=flat-square)
66

77
A Helm Chart to template flux manifests to leverage GitOps on a OpenMCP cluster.
88

helm/charts/flux-config/templates/secrets/generic-secret.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ metadata:
1010
labels:
1111
openmcp.cloud/blueprint-building-block: "{{ $.Chart.Name }}"
1212
openmcp.cloud/blueprint-building-block-version: "{{ $.Chart.Version }}"
13-
{{- if $item.stringData}}
13+
{{- if $item.stringData }}
1414
stringData:
15-
{{- range $key, $value := $item.stringData }}
16-
{{ $key }}: {{ $value | quote }}
17-
{{- end }}
15+
{{- range $key, $value := $item.stringData }}
16+
{{ $key }}: {{ $value | quote }}
1817
{{- end }}
19-
{{- if $item.data}}
18+
{{- end }}
19+
{{- if $item.data }}
2020
data:
21-
{{- toYaml $item.data | nindent 4 }}
22-
{{- end }}
21+
{{- toYaml $item.data | nindent 2 }}
22+
{{- end }}
2323
{{- end }}
24-
{{- end }}
24+
{{- end }}

0 commit comments

Comments
 (0)