Skip to content

Commit

Permalink
🐛 Add missing configmap for object/objecttypen
Browse files Browse the repository at this point in the history
  • Loading branch information
SilviaAmAm committed Dec 19, 2024
1 parent d2ee28f commit e8aeb85
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/objecten/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: objecten
description: API om objecten te beheren die behoren bij een bepaald objecttype

type: application
version: 2.6.0-beta.2
version: 2.6.0-beta.3
appVersion: latest

dependencies:
Expand Down
12 changes: 12 additions & 0 deletions charts/objecten/templates/configuration-data.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{ if and .Values.global.configuration.enabled .Values.configuration.enabled -}}
apiVersion: v1
kind: ConfigMap
metadata:
metadata:
name: {{ include "objecten.fullname" . }}-configuration
labels:
{{- include "objecten.labels" . | nindent 4 }}
data:
configuration.yaml: |-
{{- include "common.tplvalues.render" (dict "value" .Values.configuration.data "context" $) | nindent 4 }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/objecttypen/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: objecttypen
description: API om object definities te beheren

type: application
version: 1.3.0-beta.2
version: 1.3.0-beta.3
appVersion: latest

dependencies:
Expand Down
12 changes: 12 additions & 0 deletions charts/objecttypen/templates/configuration-data.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{ if and .Values.global.configuration.enabled .Values.configuration.enabled -}}
apiVersion: v1
kind: ConfigMap
metadata:
metadata:
name: {{ include "objecttypen.fullname" . }}-configuration
labels:
{{- include "objecttypen.labels" . | nindent 4 }}
data:
configuration.yaml: |-
{{- include "common.tplvalues.render" (dict "value" .Values.configuration.data "context" $) | nindent 4 }}
{{- end }}

0 comments on commit e8aeb85

Please sign in to comment.