Skip to content

Commit

Permalink
feat: add extra manifests (#277)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
amine7777 and eliobischof authored Dec 5, 2024
1 parent d9a7879 commit 5faa868
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/zitadel/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: zitadel
description: A Helm chart for ZITADEL
type: application
appVersion: v2.65.3
version: 8.6.3
version: 8.7.0
kubeVersion: '>= 1.21.0-0'
icon: https://zitadel.com/zitadel-logo-dark.svg
maintainers:
Expand Down
4 changes: 4 additions & 0 deletions charts/zitadel/templates/extra_manifests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{ range .Values.extraManifests }}
---
{{ tpl (toYaml .) $ }}
{{ end }}
11 changes: 11 additions & 0 deletions charts/zitadel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,14 @@ extraVolumeMounts: []
# mountPath: /etc/ssl/certs/myca.pem
# subPath: myca.pem
# readOnly: true

# extraManifests allows you to add your own Kubernetes manifests
# You can use templating logic like {{ .Release.Namespace }} and {{ .Values.replicaCount }} as long as your manifest is a valid YAML
extraManifests: []
# - apiVersion: v1
# kind: Secret
# metadata:
# name: {{ include "zitadel.fullname" . }}-my-secret
# stringData:
# key: value
# type: Opaque

0 comments on commit 5faa868

Please sign in to comment.