File tree Expand file tree Collapse file tree 7 files changed +25
-4
lines changed
charts/tum-gis-iot-stack-k8s Expand file tree Collapse file tree 7 files changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ For releases `< 1.0.0` minor version step indicate breaking changes.
1010
1111## [ Unreleased] - YYYY-MM-DD
1212
13+ ## [ tum-gis-iot-stack-k8s-0.9.10] - 2023-05-09
14+
15+ ### Added
16+
17+ - Exposed some more FROST-Sever settings in ` values.yml `
18+
1319## [ tum-gis-iot-stack-k8s-0.9.9] - 2023-05-09
1420
1521### Changed
@@ -127,6 +133,7 @@ For releases `< 1.0.0` minor version step indicate breaking changes.
127133### Deprecated
128134
129135[ Unreleased ] : https://github.com/tum-gis/tum-gis-iot-stack-k8s/compare/tum-gis-iot-stack-k8s-0.9.8...HEAD
136+ [ tum-gis-iot-stack-k8s-0.9.10 ] : https://github.com/tum-gis/tum-gis-iot-stack-k8s/compare/tum-gis-iot-stack-k8s-0.9.9...tum-gis-iot-stack-k8s-0.9.10
130137[ tum-gis-iot-stack-k8s-0.9.9 ] : https://github.com/tum-gis/tum-gis-iot-stack-k8s/compare/tum-gis-iot-stack-k8s-0.9.8...tum-gis-iot-stack-k8s-0.9.9
131138[ tum-gis-iot-stack-k8s-0.9.8 ] : https://github.com/tum-gis/tum-gis-iot-stack-k8s/compare/tum-gis-iot-stack-k8s-0.9.7...tum-gis-iot-stack-k8s-0.9.8
132139[ tum-gis-iot-stack-k8s-0.9.7 ] : https://github.com/tum-gis/tum-gis-iot-stack-k8s/compare/tum-gis-iot-stack-k8s-0.9.6...tum-gis-iot-stack-k8s-0.9.7
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ maintainers:
1515 name : Bruno Willenborg
1616 url : https://www.asg.ed.tum.de/en/gis/our-team/staff/bruno-willenborg/
1717
18- version : 0.9.9
18+ version : 0.9.10
1919appVersion : " 2.1.2"
2020
2121dependencies :
Original file line number Diff line number Diff line change 11# tum-gis-iot-stack-k8s
22
3- ![ Version: 0.9.9 ] ( https://img.shields.io/badge/Version-0.9.9 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.1.2] ( https://img.shields.io/badge/AppVersion-2.1.2-informational?style=flat-square )
3+ ![ Version: 0.9.10 ] ( https://img.shields.io/badge/Version-0.9.10 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.1.2] ( https://img.shields.io/badge/AppVersion-2.1.2-informational?style=flat-square )
44
55Helm Chart for the TUM-GI IoT stack.
66
Original file line number Diff line number Diff line change 99 - https://github.com/FraunhoferIOSB/FROST-Server
1010
1111
12- version : 0.6.3
12+ version : 0.6.4
1313appVersion : " 2.1.2"
1414
1515maintainers :
Original file line number Diff line number Diff line change 11# frostweb
22
3- ![ Version: 0.6.3 ] ( https://img.shields.io/badge/Version-0.6.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.1.2] ( https://img.shields.io/badge/AppVersion-2.1.2-informational?style=flat-square )
3+ ![ Version: 0.6.4 ] ( https://img.shields.io/badge/Version-0.6.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.1.2] ( https://img.shields.io/badge/AppVersion-2.1.2-informational?style=flat-square )
44
55FROST-Server HTTP and MQTT service.
66
@@ -90,8 +90,10 @@ FROST-Server HTTP and MQTT service.
9090| persistence.idGenerationMode | string | ` "ServerGeneratedOnly" ` | |
9191| persistence.queryTimeout | int | ` 0 ` | |
9292| persistence.slowQueryThreshold | int | ` 200 ` | |
93+ | plugins.openApi.enable | bool | ` false ` | Enable/disable OpenAPI endpoint, see https://fraunhoferiosb.github.io/FROST-Server/settings/plugins.html |
9394| podAnnotations | object | ` {} ` | Additional pod annotations |
9495| podSecurityContext | object | ` {} ` | |
96+ | queueLoggingInterval | int | ` 0 ` | |
9597| readinessProbe.enabled | bool | ` true ` | Enable/disable readiness probe [ Readiness probe] ( https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes ) See the [ API reference] ( https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#Probe ) for details. Use ` readinessProbe.probe: {} ` to configure [ readinessProbe probe] ( https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ ) |
9698| readinessProbe.failureThreshold | int | ` 5 ` | |
9799| readinessProbe.initialDelaySeconds | int | ` 10 ` | |
Original file line number Diff line number Diff line change 2121 maxDataSize : {{ .Values.maxDataSize | quote }}
2222 defaultCount : {{ .Values.defaultCount | quote }}
2323 logSensitiveData : {{ .Values.logSensitiveData | quote }}
24+ queueLoggingInterval : {{ .Values.queueLoggingInterval | quote }}
2425
2526 # Persistence settings
2627 persistence_db_driver : {{ .Values.persistence.db.driver | quote }}
3738 mqtt_Host : {{ .Values.mqtt.host | quote }}
3839 mqtt_QoS : {{ .Values.mqtt.qos | quote }}
3940
41+ # Plugin settings
42+ plugins_openApi_enable : {{ .Values.plugins.openApi.enable | quote }}
43+
4044 # Auth settings
4145 {{ if .Values.auth.enabled -}}
4246 auth_realmName : {{ .Values.auth.realmName | quote }}
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ defaultTop: 100
117117defaultCount : false
118118maxDataSize : " 25000000"
119119logSensitiveData : false
120+ queueLoggingInterval : 0
120121
121122# FROST-Server MQTT settings
122123# https://fraunhoferiosb.github.io/FROST-Server/settings/settings.html#mqtt-settings
@@ -134,6 +135,13 @@ mqttService:
134135 # -- Service port for MQTT
135136 port : 1883
136137
138+ # FROST-Server plugin settings
139+ plugins :
140+ openApi :
141+ # -- Enable/disable OpenAPI endpoint, see
142+ # https://fraunhoferiosb.github.io/FROST-Server/settings/plugins.html
143+ enable : false
144+
137145# -- Extra environment variables. Watch out for unquoted strings!
138146extraEnv : {}
139147
You can’t perform that action at this time.
0 commit comments