Skip to content

Commit 5faa868

Browse files
feat: add extra manifests (#277)
* Add extra manifests * Delete typo * Bump the chart version to enable valid linting * use valid example secret with templating --------- Co-authored-by: Elio Bischof <[email protected]>
1 parent d9a7879 commit 5faa868

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

charts/zitadel/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: zitadel
33
description: A Helm chart for ZITADEL
44
type: application
55
appVersion: v2.65.3
6-
version: 8.6.3
6+
version: 8.7.0
77
kubeVersion: '>= 1.21.0-0'
88
icon: https://zitadel.com/zitadel-logo-dark.svg
99
maintainers:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{{ range .Values.extraManifests }}
2+
---
3+
{{ tpl (toYaml .) $ }}
4+
{{ end }}

charts/zitadel/values.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -252,3 +252,14 @@ extraVolumeMounts: []
252252
# mountPath: /etc/ssl/certs/myca.pem
253253
# subPath: myca.pem
254254
# readOnly: true
255+
256+
# extraManifests allows you to add your own Kubernetes manifests
257+
# You can use templating logic like {{ .Release.Namespace }} and {{ .Values.replicaCount }} as long as your manifest is a valid YAML
258+
extraManifests: []
259+
# - apiVersion: v1
260+
# kind: Secret
261+
# metadata:
262+
# name: {{ include "zitadel.fullname" . }}-my-secret
263+
# stringData:
264+
# key: value
265+
# type: Opaque

0 commit comments

Comments
 (0)