mirror of https://github.com/dapr/docs.git
Merge branch 'v1.15' into ref-api-metadata-scheduler
This commit is contained in:
commit
8f9ce7f59b
|
@ -149,7 +149,7 @@ services:
|
||||||
- type: tmpfs
|
- type: tmpfs
|
||||||
target: /data
|
target: /data
|
||||||
tmpfs:
|
tmpfs:
|
||||||
size: "10000"
|
size: "64m"
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
hello-dapr: null
|
hello-dapr: null
|
||||||
|
|
|
@ -231,6 +231,8 @@ kubectl rollout restart -n <DAPR_NAMESPACE> deployment/dapr-sentry
|
||||||
```bash
|
```bash
|
||||||
kubectl rollout restart deploy/dapr-operator -n <DAPR_NAMESPACE>
|
kubectl rollout restart deploy/dapr-operator -n <DAPR_NAMESPACE>
|
||||||
kubectl rollout restart statefulsets/dapr-placement-server -n <DAPR_NAMESPACE>
|
kubectl rollout restart statefulsets/dapr-placement-server -n <DAPR_NAMESPACE>
|
||||||
|
kubectl rollout restart deploy/dapr-sidecar-injector -n <DAPR_NAMESPACE>
|
||||||
|
kubectl rollout restart deploy/dapr-scheduler-server -n <DAPR_NAMESPACE>
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Restart your Dapr applications to pick up the latest trust bundle.
|
4. Restart your Dapr applications to pick up the latest trust bundle.
|
||||||
|
@ -332,12 +334,13 @@ Example:
|
||||||
dapr status -k
|
dapr status -k
|
||||||
|
|
||||||
NAME NAMESPACE HEALTHY STATUS REPLICAS VERSION AGE CREATED
|
NAME NAMESPACE HEALTHY STATUS REPLICAS VERSION AGE CREATED
|
||||||
dapr-sentry dapr-system True Running 1 1.7.0 17d 2022-03-15 09:29.45
|
dapr-operator dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.26
|
||||||
dapr-dashboard dapr-system True Running 1 0.9.0 17d 2022-03-15 09:29.45
|
dapr-placement-server dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.27
|
||||||
dapr-sidecar-injector dapr-system True Running 1 1.7.0 17d 2022-03-15 09:29.45
|
dapr-dashboard dapr-system True Running 1 0.15.0 4m 2025-02-19 17:36.27
|
||||||
dapr-operator dapr-system True Running 1 1.7.0 17d 2022-03-15 09:29.45
|
dapr-sentry dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.26
|
||||||
dapr-placement-server dapr-system True Running 1 1.7.0 17d 2022-03-15 09:29.45
|
dapr-scheduler-server dapr-system True Running 3 1.15.0 4m 2025-02-19 17:36.27
|
||||||
⚠ Dapr root certificate of your Kubernetes cluster expires in 2 days. Expiry date: Mon, 04 Apr 2022 15:01:03 UTC.
|
dapr-sidecar-injector dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.26
|
||||||
|
⚠ Dapr root certificate of your Kubernetes cluster expires in 2 days. Expiry date: Mon, 04 Apr 2025 15:01:03 UTC.
|
||||||
Please see docs.dapr.io for certificate renewal instructions to avoid service interruptions.
|
Please see docs.dapr.io for certificate renewal instructions to avoid service interruptions.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -459,8 +459,8 @@ Apache Kafka supports the following bulk metadata options:
|
||||||
|
|
||||||
| Configuration | Default |
|
| Configuration | Default |
|
||||||
|----------|---------|
|
|----------|---------|
|
||||||
| `maxBulkAwaitDurationMs` | `10000` (10s) |
|
| `maxAwaitDurationMs` | `10000` (10s) |
|
||||||
| `maxBulkSubCount` | `80` |
|
| `maxMessagesCount` | `80` |
|
||||||
|
|
||||||
## Per-call metadata fields
|
## Per-call metadata fields
|
||||||
|
|
||||||
|
@ -540,6 +540,7 @@ app.include_router(router)
|
||||||
```
|
```
|
||||||
|
|
||||||
{{% /codetab %}}
|
{{% /codetab %}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
## Receiving message headers with special characters
|
## Receiving message headers with special characters
|
||||||
|
|
|
@ -19,8 +19,8 @@ data:
|
||||||
zpages:
|
zpages:
|
||||||
endpoint: :55679
|
endpoint: :55679
|
||||||
exporters:
|
exporters:
|
||||||
logging:
|
debug:
|
||||||
loglevel: debug
|
verbosity: detailed
|
||||||
# Depending on where you want to export your trace, use the
|
# Depending on where you want to export your trace, use the
|
||||||
# correct OpenTelemetry trace exporter here.
|
# correct OpenTelemetry trace exporter here.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue