Skip to content

Commit e7e5d92

Browse files
author
Silvia
authored
Merge pull request #353 from maykinmedia/feature/objects-3.6.0
πŸ”– Update Objecten to 3.6.0
2 parents d6876f6 + 2905434 commit e7e5d92

5 files changed

Lines changed: 20 additions & 4 deletions

File tree

β€Žcharts/objecten/CHANGELOG.mdβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2.12.0 (2025-02-03)
4+
5+
**Changes**
6+
7+
- Bumped application version from 3.5.0 to 3.6.0
8+
- Added ENABLE_CLOUD_EVENTS & NOTIFICATIONS_SOURCE settings
9+
310
## 2.11.0 (2025-12-24)
411

512
**Warning**

β€Žcharts/objecten/Chart.yamlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: objecten
33
description: API om objecten te beheren die behoren bij een bepaald objecttype
44

55
type: application
6-
version: 2.11.0
7-
appVersion: 3.5.0
6+
version: 2.12.0
7+
appVersion: 3.6.0
88

99
dependencies:
1010
- name: redis

β€Žcharts/objecten/README.mdβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# objecten
22

3-
![Version: 2.11.0](https://img.shields.io/badge/Version-2.11.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.5.0](https://img.shields.io/badge/AppVersion-3.5.0-informational?style=flat-square)
3+
![Version: 2.12.0](https://img.shields.io/badge/Version-2.12.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.6.0](https://img.shields.io/badge/AppVersion-3.6.0-informational?style=flat-square)
44

55
API om objecten te beheren die behoren bij een bepaald objecttype
66

@@ -154,10 +154,12 @@ API om objecten te beheren die behoren bij een bepaald objecttype
154154
| settings.email.port | int | `25` | |
155155
| settings.email.useTLS | bool | `false` | |
156156
| settings.email.username | string | `""` | |
157+
| settings.enableCloudEvents | bool | `false` | Cloudevents |
157158
| settings.environment | string | `""` | sets the 'ENVIRONMENT' variable |
158159
| settings.isHttps | bool | `true` | |
159160
| settings.logLevel | string | `"INFO"` | Default value "INFO" ; Available values are CRITICAL, ERROR, WARNING, INFO and DEBUG |
160161
| settings.notificationsDisabled | bool | `false` | |
162+
| settings.notificationsSource | string | `""` | |
161163
| settings.otel.disabled | bool | `true` | |
162164
| settings.otel.exporterOtlpEndpoint | string | `""` | Network address where to send the metrics to. Examples are: https://otel.example.com:4318 or http://otel-collector.namespace.cluster.svc:4317. |
163165
| settings.otel.exporterOtlpHeaders | list | `[]` | Any additional HTTP headers, for example if you need Basic auth. This is used in the secret.yaml, as it can contain credentials. |

β€Žcharts/objecten/templates/configmap.yamlβ€Ž

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,8 @@ data:
129129
OTEL_METRIC_EXPORT_INTERVAL: {{ .Values.settings.otel.metricExportInterval | toString | quote }}
130130
OTEL_METRIC_EXPORT_TIMEOUT: {{ .Values.settings.otel.metricExportTimeout | toString | quote }}
131131
{{- end }}
132-
132+
ENABLE_CLOUD_EVENTS: {{ if .Values.settings.enableCloudEvents }}"True"{{ else }}"False"{{ end }}
133+
{{- if .Values.settings.notificationsSource }}
134+
NOTIFICATIONS_SOURCE: {{ .Values.settings.notificationsSource | toString | quote }}
135+
{{- end }}
133136

β€Žcharts/objecten/values.yamlβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,10 @@ settings:
308308
# -- Disable two factor authentication
309309
disable2fa: false
310310

311+
# -- Cloudevents
312+
enableCloudEvents: false
313+
notificationsSource: ""
314+
311315
# -- Generate secret key at https://djecrety.ir/
312316
secretKey: ""
313317

0 commit comments

Comments
Β (0)