Skip to content

Commit baa07fb

Browse files
authored
Merge branch 'v1.13' into endgame_1.13
2 parents 3175bc8 + 316e8bb commit baa07fb

File tree

9 files changed

+56
-11
lines changed

9 files changed

+56
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dapr documentation
22

3-
[![GitHub License](https://img.shields.io/github/license/dapr/docs?style=flat&label=License&logo=github)](https://github.com/dapr/docs/blob/v1.13/LICENSE) [![GitHub issue custom search in repo](https://img.shields.io/github/issues-search/dapr/docs?query=type%3Aissue%20is%3Aopen%20label%3A%22good%20first%20issue%22&label=Good%20first%20issues&style=flat&logo=github)](https://github.com/dapr/docs/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) [![Discord](https://img.shields.io/discord/778680217417809931?label=Discord&style=flat&logo=discord)](http://bit.ly/dapr-discord) [![YouTube Channel Views](https://img.shields.io/youtube/channel/views/UCtpSQ9BLB_3EXdWAUQYwnRA?style=flat&label=YouTube%20views&logo=youtube)](https://youtube.com/@daprdev) [![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/daprdev?logo=x&style=flat)](https://twitter.com/daprdev)
3+
[![GitHub License](https://img.shields.io/github/license/dapr/docs?style=flat&label=License&logo=github)](https://github.com/dapr/docs/blob/v1.13/LICENSE) [![GitHub issue custom search in repo](https://img.shields.io/github/issues-search/dapr/docs?query=type%3Aissue%20is%3Aopen%20label%3A%22good%20first%20issue%22&label=Good%20first%20issues&style=flat&logo=github)](https://github.com/dapr/docs/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) [![Discord](https://img.shields.io/discord/778680217417809931?label=Discord&style=flat&logo=discord)](https://bit.ly/dapr-discord) [![YouTube Channel Views](https://img.shields.io/youtube/channel/views/UCtpSQ9BLB_3EXdWAUQYwnRA?style=flat&label=YouTube%20views&logo=youtube)](https://youtube.com/@daprdev) [![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/daprdev?logo=x&style=flat)](https://twitter.com/daprdev)
44

55
If you are looking to explore the Dapr documentation, please go to the documentation website:
66

@@ -23,7 +23,7 @@ For more information visit the [Dapr branch structure](https://docs.dapr.io/cont
2323

2424
## Contribution guidelines
2525

26-
Before making your first contribution, make sure to review the [contributing section](http://docs.dapr.io/contributing/) in the docs.
26+
Before making your first contribution, make sure to review the [contributing section](https://docs.dapr.io/contributing/) in the docs.
2727

2828
## Overview
2929

daprdocs/content/en/concepts/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Dapr can be used from any developer framework. Here are some that have been inte
138138
| [.NET]({{< ref dotnet >}}) | [ASP.NET Core](https://github.com/dapr/dotnet-sdk/tree/master/examples/AspNetCore) | Brings stateful routing controllers that respond to pub/sub events from other services. Can also take advantage of [ASP.NET Core gRPC Services](https://docs.microsoft.com/aspnet/core/grpc/).
139139
| [Java]({{< ref java >}}) | [Spring Boot](https://spring.io/) | Build Spring boot applications with Dapr APIs
140140
| [Python]({{< ref python >}}) | [Flask]({{< ref python-flask.md >}}) | Build Flask applications with Dapr APIs
141-
| [JavaScript](https://github.com/dapr/js-sdk) | [Express](http://expressjs.com/) | Build Express applications with Dapr APIs
141+
| [JavaScript](https://github.com/dapr/js-sdk) | [Express](https://expressjs.com/) | Build Express applications with Dapr APIs
142142
| [PHP]({{< ref php >}}) | | You can serve with Apache, Nginx, or Caddyserver.
143143

144144
#### Integrations and extensions

daprdocs/content/en/reference/components-reference/supported-bindings/redis.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
3737
| Field | Required | Binding support | Details | Example |
3838
|--------------------|:--------:|------------|-----|---------|
3939
| `redisHost` | Y | Output | The Redis host address | `"localhost:6379"` |
40-
| `redisPassword` | Y | Output | The Redis password | `"password"` |
40+
| `redisPassword` | N | Output | The Redis password | `"password"` |
4141
| `redisUsername` | N | Output | Username for Redis host. Defaults to empty. Make sure your redis server version is 6 or above, and have created acl rule correctly. | `"username"` |
4242
| `enableTLS` | N | Output | If the Redis instance supports TLS with public certificates it can be configured to enable or disable TLS. Defaults to `"false"` | `"true"`, `"false"` |
4343
| `failover` | N | Output | Property to enabled failover configuration. Needs sentinalMasterName to be set. Defaults to `"false"` | `"true"`, `"false"`

daprdocs/content/en/reference/components-reference/supported-configuration-stores/redis-configuration-store.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
3939
| Field | Required | Details | Example |
4040
|--------------------|:--------:|---------|---------|
4141
| redisHost | Y | Output | The Redis host address | `"localhost:6379"` |
42-
| redisPassword | Y | Output | The Redis password | `"password"` |
42+
| redisPassword | N | Output | The Redis password | `"password"` |
4343
| redisUsername | N | Output | Username for Redis host. Defaults to empty. Make sure your Redis server version is 6 or above, and have created acl rule correctly. | `"username"` |
4444
| enableTLS | N | Output | If the Redis instance supports TLS with public certificates it can be configured to enable or disable TLS. Defaults to `"false"` | `"true"`, `"false"` |
4545
| failover | N | Output | Property to enabled failover configuration. Needs sentinelMasterName to be set. Defaults to `"false"` | `"true"`, `"false"`

daprdocs/content/en/reference/components-reference/supported-locks/redis-lock.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
metadata:
2121
- name: redisHost
2222
value: <HOST>
23-
- name: redisPassword
23+
- name: redisPassword #Optional.
2424
value: <PASSWORD>
2525
- name: enableTLS
2626
value: <bool> # Optional. Allowed: true, false.
@@ -80,7 +80,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
8080
| Field | Required | Details | Example |
8181
|--------------------|:--------:|---------|---------|
8282
| redisHost | Y | Connection-string for the redis host | `localhost:6379`, `redis-master.default.svc.cluster.local:6379`
83-
| redisPassword | Y | Password for Redis host. No Default. Can be `secretKeyRef` to use a secret reference | `""`, `"KeFg23!"`
83+
| redisPassword | N | Password for Redis host. No Default. Can be `secretKeyRef` to use a secret reference | `""`, `"KeFg23!"`
8484
| redisUsername | N | Username for Redis host. Defaults to empty. Make sure your redis server version is 6 or above, and have created acl rule correctly. | `""`, `"default"`
8585
| enableTLS | N | If the Redis instance supports TLS with public certificates, can be configured to be enabled or disabled. Defaults to `"false"` | `"true"`, `"false"`
8686
| maxRetries | N | Maximum number of retries before giving up. Defaults to `3` | `5`, `10`

daprdocs/content/en/reference/components-reference/supported-pubsub/setup-redis-pubsub.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
3939
| Field | Required | Details | Example |
4040
|--------------------|:--------:|---------|---------|
4141
| redisHost | Y | Connection-string for the redis host. If `"redisType"` is `"cluster"` it can be multiple hosts separated by commas or just a single host | `localhost:6379`, `redis-master.default.svc.cluster.local:6379`
42-
| redisPassword | Y | Password for Redis host. No Default. Can be `secretKeyRef` to use a secret reference | `""`, `"KeFg23!"`
42+
| redisPassword | N | Password for Redis host. No Default. Can be `secretKeyRef` to use a secret reference | `""`, `"KeFg23!"`
4343
| redisUsername | N | Username for Redis host. Defaults to empty. Make sure your redis server version is 6 or above, and have created acl rule correctly. | `""`, `"default"`
4444
| consumerID | N | The consumer group ID. | Can be set to string value (such as `"channel1"` in the example above) or string format value (such as `"{podName}"`, etc.). [See all of template tags you can use in your component metadata.]({{< ref "component-schema.md#templated-metadata-values" >}})
4545
| enableTLS | N | If the Redis instance supports TLS with public certificates, can be configured to be enabled or disabled. Defaults to `"false"` | `"true"`, `"false"`

daprdocs/content/en/reference/components-reference/supported-state-stores/setup-redis.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
metadata:
2727
- name: redisHost
2828
value: <HOST>
29-
- name: redisPassword
29+
- name: redisPassword # Optional.
3030
value: <PASSWORD>
3131
- name: enableTLS
3232
value: <bool> # Optional. Allowed: true, false.
@@ -96,7 +96,7 @@ If you wish to use Redis as an actor store, append the following to the yaml.
9696
| Field | Required | Details | Example |
9797
|--------------------|:--------:|---------|---------|
9898
| redisHost | Y | Connection-string for the redis host | `localhost:6379`, `redis-master.default.svc.cluster.local:6379`
99-
| redisPassword | Y | Password for Redis host. No Default. Can be `secretKeyRef` to use a secret reference | `""`, `"KeFg23!"`
99+
| redisPassword | N | Password for Redis host. No Default. Can be `secretKeyRef` to use a secret reference | `""`, `"KeFg23!"`
100100
| redisUsername | N | Username for Redis host. Defaults to empty. Make sure your redis server version is 6 or above, and have created acl rule correctly. | `""`, `"default"`
101101
| enableTLS | N | If the Redis instance supports TLS with public certificates, can be configured to be enabled or disabled. Defaults to `"false"` | `"true"`, `"false"`
102102
| maxRetries | N | Maximum number of retries before giving up. Defaults to `3` | `5`, `10`

daprdocs/layouts/partials/head.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<meta charset="utf-8">
2+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
3+
{{ hugo.Generator }}
4+
{{ range .AlternativeOutputFormats -}}
5+
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
6+
{{ end -}}
7+
8+
{{ $outputFormat := partial "outputformat.html" . -}}
9+
{{ if and hugo.IsProduction (ne $outputFormat "print") -}}
10+
<meta name="robots" content="index, follow">
11+
{{ else -}}
12+
<meta name="robots" content="noindex, nofollow">
13+
{{ end -}}
14+
15+
{{ partialCached "favicons.html" . }}
16+
<title>
17+
{{- if .IsHome -}}
18+
{{ .Site.Title -}}
19+
{{ else -}}
20+
{{ with .Title }}{{ . }} | {{ end -}}
21+
{{ .Site.Title -}}
22+
{{ end -}}
23+
</title>
24+
{{ $desc := .Page.Description | default (.Page.Content | safeHTML | truncate 150) -}}
25+
<meta name="description" content="{{ $desc }}">
26+
{{ template "_internal/opengraph.html" . -}}
27+
{{ template "_internal/schema.html" . -}}
28+
{{ template "_internal/twitter_cards.html" . -}}
29+
{{ partialCached "head-css.html" . "asdf" -}}
30+
<script
31+
src="https://code.jquery.com/jquery-3.5.1.min.js"
32+
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
33+
crossorigin="anonymous"></script>
34+
{{ if .Site.Params.offlineSearch -}}
35+
<script
36+
src="https://unpkg.com/[email protected]/lunr.min.js"
37+
integrity="sha384-vRQ9bDyE0Wnu+lMfm57BlYLO0/XauFuKpVsZPs7KEDwYKktWi5+Kz3MP8++DFlRY"
38+
crossorigin="anonymous"></script>
39+
{{ end -}}
40+
41+
{{ if .Site.Params.prism_syntax_highlighting -}}
42+
<link rel="stylesheet" href="{{ "/css/prism.css" | relURL }}"/>
43+
{{ end -}}
44+
45+
{{ partial "hooks/head-end.html" . -}}

daprdocs/static/docs/open-telemetry-collector/collector-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ spec:
77
tracing:
88
samplingRate: "1"
99
zipkin:
10-
endpointAddress: "http://otel-collector.default.svc.cluster.local:9411/api/v2/spans"
10+
endpointAddress: "https://otel-collector.default.svc.cluster.local:9411/api/v2/spans"

0 commit comments

Comments
 (0)