diff --git a/helm/charts/oathkeeper/values.yaml b/helm/charts/oathkeeper/values.yaml index dba84e5ae8..3e3ecdf7f3 100644 --- a/helm/charts/oathkeeper/values.yaml +++ b/helm/charts/oathkeeper/values.yaml @@ -425,3 +425,10 @@ test: busybox: repository: busybox tag: 1 + +# Extra kubernetes manifests to deploy +extraObjects: [] +# extraObjects: +# - apiVersion: v1 +# kind: ConfigMap +# metadata: ... diff --git a/helm/charts/ory-commons/templates/extra-manifests.yaml b/helm/charts/ory-commons/templates/extra-manifests.yaml new file mode 100644 index 0000000000..fa2e9318e0 --- /dev/null +++ b/helm/charts/ory-commons/templates/extra-manifests.yaml @@ -0,0 +1,6 @@ +{{- if .Values.extraObjects }} +{{- range .Values.extraObjects }} +--- +{{ tpl (toYaml .) $ }} +{{- end }} +{{- end }}