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
|`--enable-dapr`|`dapr.enabled`| Enables Dapr on the container app. |
27
27
|`--dapr-app-port`|`dapr.appPort`| The port your application is listening on which is used by Dapr for communicating to your application |
28
-
|`--dapr-app-protocol`|`dapr.appProtocol`| Tells Dapr which protocol your application is using. Valid options are `http` or `grpc`. Default is `http`. |
28
+
|`--dapr-app-protocol`|`dapr.appProtocol`| Tells Dapr which protocol your application is using. Valid options are `http` or `grpc`. Default setting is `http`. |
29
29
|`--dapr-app-id`|`dapr.appId`| A unique Dapr identifier for your container app used for service discovery, state encapsulation, and the pub/sub consumer ID. |
30
-
|`--dapr-max-request-size`|`dapr.httpMaxRequestSize`| Set the max size of request body http and grpc servers to handle uploading of large files. Default is 4 MB. |
31
-
|`--dapr-read-buffer-size`|`dapr.httpReadBufferSize`| Set the max size of http header read buffer in to handle when sending multi-KB headers. The default 4 KB. |
30
+
|`--dapr-max-request-size`|`dapr.httpMaxRequestSize`| Set the max size of request body http and grpc servers to handle uploading of large files. Default setting is `4 MB`. |
31
+
|`--dapr-read-buffer-size`|`dapr.httpReadBufferSize`| Set the max size of http header read buffer in to handle when sending multi-KB headers. Default setting is `4 KB`. |
32
32
|`--dapr-api-logging`|`dapr.enableApiLogging`| Enables viewing the API calls from your application to the Dapr sidecar. |
33
-
|`--dapr-log-level`|`dapr.logLevel`| Set the log level for the Dapr sidecar. Allowed values: debug, error, info, warn. Default is `info`. |
33
+
|`--dapr-log-level`|`dapr.logLevel`| Set the log level for the Dapr sidecar. Allowed values: debug, error, info, warn. Default setting is `info`. |
34
34
|`--dapr-app-health-enabled`|`dapr.appHealth.enabled`| Optional configuration to enable app health checks for your container app using Boolean format. Default setting is `false`. |
35
-
|`--dapr-app-health-path`|`dapr.appHealth.path`| Set the path that Dapr invokes for health probes when the app channel is HTTP. This value is ignored if the app channel is using gRPC. |
36
-
|`--dapr-app-health-probe-interval`|`dapr.appHealth.probeIntervalSeconds`| Number of seconds between each health probe. |
37
-
|`--dapr-app-health-probe-timeout`|`dapr.appHealth.probeTimeoutMilliseconds`| Timeout in milliseconds for health probe requests. This value must be smaller than the `probeIntervalSeconds` value. |
38
-
|`--dapr-app-health-threshold`|`dapr.appHealth.threshold`| Max number of consecutive failures before the app is considered healthy. |
39
-
|`--dapr-max-concurrency`|`dapr.maxConcurrency`| Limit the concurrency of your application. A valid value is any number larger than `0`. `-1` means no concurrency. |
35
+
|`--dapr-app-health-path`|`dapr.appHealth.path`| Set the path that Dapr invokes for health probes when the app channel is HTTP. This value is ignored if the app channel is using gRPC. Default setting is `/healthz`.|
36
+
|`--dapr-app-health-probe-interval`|`dapr.appHealth.probeIntervalSeconds`| Number of seconds between each health probe. Default setting is `3`.|
37
+
|`--dapr-app-health-probe-timeout`|`dapr.appHealth.probeTimeoutMilliseconds`| Timeout in milliseconds for health probe requests. This value must be smaller than the `probeIntervalSeconds` value. Default setting is `500`.|
38
+
|`--dapr-app-health-threshold`|`dapr.appHealth.threshold`| Max number of consecutive failures before the app is considered unhealthy. Default setting is `3`.|
39
+
|`--dapr-max-concurrency`|`dapr.maxConcurrency`| Limit the concurrency of your application. A valid value is any number larger than `0`. `-1` means no limit on concurrency. |
0 commit comments