You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/ontoserver/values.schema.json
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,14 @@
53
53
"type": "integer",
54
54
"minimum": 0
55
55
},
56
+
"podManagementPolicy": {
57
+
"type": "string",
58
+
"enum": [
59
+
"Parallel",
60
+
"OrderedReady"
61
+
],
62
+
"description": "StatefulSet pod management policy. Parallel does not wait for Ready before replacing the next pod; OrderedReady does. Immutable on a live StatefulSet."
63
+
},
56
64
"clusterName": {
57
65
"type": "string"
58
66
},
@@ -653,6 +661,14 @@
653
661
"excludedClasses": {
654
662
"type": "string"
655
663
},
664
+
"metricsExporter": {
665
+
"type": "string",
666
+
"description": "OTEL_METRICS_EXPORTER for the Java agent (e.g. otlp, prometheus, none)."
667
+
},
668
+
"logsExporter": {
669
+
"type": "string",
670
+
"description": "OTEL_LOGS_EXPORTER for the Java agent (e.g. otlp, none)."
Copy file name to clipboardExpand all lines: charts/ontoserver/values.yaml
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ ontoserver:
28
28
allowScaledReadWrite: false
29
29
## @param ontoserver.deployment.replicas Number of replicas - min 2 for scaled deployment - can be set to 0
30
30
replicas: 1
31
+
## @param ontoserver.deployment.podManagementPolicy StatefulSet pod management policy (Parallel or OrderedReady); ignored when kind is Deployment. Parallel starts and replaces pods without waiting for Ready, so a multi-replica rolling update can leave the Service with no ready endpoint; OrderedReady waits for each pod to become Ready first. Immutable on a live StatefulSet - see the README for the --cascade=orphan recreate.
32
+
podManagementPolicy: Parallel
31
33
## @param ontoserver.deployment.clusterName Cluster name for auto-discovery in scaled deployments (overrides the default "ontoserver" set in application.properties); ignored for single deployments
## @param ontoserver.serverName Server hostname - must match a hostName at ontoserver.hostNames
200
202
serverName: localhost
201
203
## @param ontoserver.serverPort Non-standard port exposed to clients (e.g. 8080 when port-forwarding or k3d maps 8080:80). Leave empty for standard ports (80/443).
202
-
serverPort: "8080"
204
+
serverPort: ""
203
205
## @param ontoserver.hostNames Hostnames for ingress/gateway
204
206
hostNames:
205
207
- localhost
@@ -318,8 +320,12 @@ ontoserver:
318
320
propagators: "tracecontext,baggage,b3multi"
319
321
## @param ontoserver.opentelemetry.instrumentation.excludedClasses Classes to exclude from instrumentation
320
322
excludedClasses: "ca.uhn.fhir.*Interceptor*"
323
+
## @param ontoserver.opentelemetry.instrumentation.metricsExporter OTEL_METRICS_EXPORTER for the Java agent (e.g. otlp for JVM heap and GC metrics, or none to disable)
324
+
metricsExporter: "none"
325
+
## @param ontoserver.opentelemetry.instrumentation.logsExporter OTEL_LOGS_EXPORTER for the Java agent (e.g. otlp, or none to disable)
326
+
logsExporter: "none"
321
327
exporter:
322
-
## @param ontoserver.opentelemetry.instrumentation.exporter.type Exporter type (zipkin, otlp, etc.)
0 commit comments