From 3f307294574d07dee3af4e52342d049c089a4806 Mon Sep 17 00:00:00 2001 From: Massimo Crippa Date: Fri, 26 Nov 2021 16:43:45 +0100 Subject: [PATCH 1/3] fix: small typo replace semicolons with colons there are a couple of semicolons that should be colons --- .../en/operations/configuration/configuration-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/operations/configuration/configuration-overview.md b/daprdocs/content/en/operations/configuration/configuration-overview.md index a9b941a30..55f5742a1 100644 --- a/daprdocs/content/en/operations/configuration/configuration-overview.md +++ b/daprdocs/content/en/operations/configuration/configuration-overview.md @@ -16,7 +16,7 @@ In self hosted mode the Dapr configuration is a configuration file, for example A Dapr sidecar can also apply a configuration by using a ```--config``` flag to the file path with ```dapr run``` CLI command. #### Kubernetes sidecar -In Kubernetes mode the Dapr configuration is a Configuration CRD, that is applied to the cluster. For example; +In Kubernetes mode the Dapr configuration is a Configuration CRD, that is applied to the cluster. For example: ```bash kubectl apply -f myappconfig.yaml @@ -41,7 +41,7 @@ Note: There are more [Kubernetes annotations]({{< ref "arguments-annotations-ove ### Sidecar configuration settings -The following configuration settings can be applied to Dapr application sidecars; +The following configuration settings can be applied to Dapr application sidecars: - [Tracing](#tracing) - [Metrics](#metrics) - [Middleware](#middleware) From e4af246e04f968fb969826d1ff81f8cad5024494 Mon Sep 17 00:00:00 2001 From: Will Tsai Date: Tue, 30 Nov 2021 09:30:11 -0800 Subject: [PATCH 2/3] Deleting redundant page app-configuration-overview.md --- .../app-configuration-overview.md | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 daprdocs/content/en/developing-applications/building-blocks/configuration/app-configuration-overview.md diff --git a/daprdocs/content/en/developing-applications/building-blocks/configuration/app-configuration-overview.md b/daprdocs/content/en/developing-applications/building-blocks/configuration/app-configuration-overview.md deleted file mode 100644 index 5fd34c9bb..000000000 --- a/daprdocs/content/en/developing-applications/building-blocks/configuration/app-configuration-overview.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -type: docs -title: "Configuration overview" -linkTitle: "Configuration overview" -weight: 1000 -description: "Use Dapr to get and watch application configuration" ---- - -Consuming application configuration is a common task when writing applications and frequently configuration stores are used to manage this configuration data. A configuration item is often dynamic in nature and is tightly coupled to the needs of the application that consumes it. For example, common uses for application configuration include names of secrets that need to be retrieved, different identifiers, partition or consumer IDs, names of databased to connect to etc. These configuration items are typically stored as key-value items in a database. - -Dapr provides a [State Management API]({{}}) that is based on key-value stores. However, application configuration can be changed by either developers or operators at runtime and the developer needs to be notified of these changes in order to take the required action and load the new configuration. Also the configuration data may want to be read only. Dapr's Configuration API allows developers to consume configuration items that are returned as key/value pair and subscribe to changes whenever a configuration item changes. - -*This API is currently in `Alpha state` and only available on gRPC. An HTTP1.1 supported version with this URL `/v1.0/configuration` will be available before the API becomes stable.* - -## References - -- [How-To: Manage application configuration]({{< ref howto-manage-configuration.md >}}) - From dc460db372e759cac613cca05dcef5edb0fefdd6 Mon Sep 17 00:00:00 2001 From: Will Tsai Date: Tue, 30 Nov 2021 11:21:25 -0800 Subject: [PATCH 3/3] fix Jetstream broken link --- .../components-reference/supported-pubsub/setup-jetstream.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-jetstream.md b/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-jetstream.md index 61e4711cb..791a2f02b 100644 --- a/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-jetstream.md +++ b/daprdocs/content/en/reference/components-reference/supported-pubsub/setup-jetstream.md @@ -86,7 +86,7 @@ with NATS, find the service with: `kubectl get svc my-nats`. - [Basic schema for a Dapr component]({{< ref component-schema >}}) - Read [this guide]({{< ref "howto-publish-subscribe.md#step-2-publish-a-topic" >}}) for instructions on configuring pub/sub components - [Pub/Sub building block]({{< ref pubsub >}}) -- [JetStream Documentation](https://docs.nats.io/jetstream/jetstream) +- [JetStream Documentation](https://docs.nats.io/nats-concepts/jetstream) - [NATS CLI](https://github.com/nats-io/natscli)