-
Notifications
You must be signed in to change notification settings - Fork 726
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4215 from hhunter-ms/issue_4207
Add namespacing landing page
- Loading branch information
Showing
5 changed files
with
57 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
type: docs | ||
title: "Frequently asked questions and answers" | ||
linkTitle: "FAQs" | ||
weight: 1100 | ||
description: "Learn more about Dapr concepts through frequently asked questions" | ||
--- |
6 changes: 3 additions & 3 deletions
6
daprdocs/content/en/concepts/faq.md → daprdocs/content/en/concepts/faq/faq.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
type: docs | ||
title: "Isolation" | ||
linkTitle: "Isolation" | ||
weight: 700 | ||
description: How Dapr provides namespacing and isolation | ||
--- | ||
|
||
Dapr namespacing provides isolation and multi-tenancy across many capabilities, giving greater security. Typically applications and components are deployed to namespaces to provide isolation in a given environment, such as Kubernetes. | ||
|
||
Dapr supports namespacing in service invocation calls between applications, when accessing components, sending pub/sub messages in consumer groups, and with actors type deployments as examples. Namespacing isolation is supported in both self-hosted and Kubernetes modes. | ||
|
||
To get started, create and configure your namespace. | ||
|
||
{{< tabs "Self-Hosted" "Kubernetes">}} | ||
|
||
{{% codetab %}} | ||
|
||
In self-hosted mode, specify the namespace for a Dapr instance by setting the `NAMESPACE` environment variable. | ||
|
||
{{% /codetab %}} | ||
|
||
{{% codetab %}} | ||
|
||
On Kubernetes, create and configure the namespace: | ||
|
||
```bash | ||
kubectl create namespace namespaceA | ||
kubectl config set-context --current --namespace=namespaceA | ||
``` | ||
|
||
Then deploy your applications into this namespace. | ||
|
||
{{% /codetab %}} | ||
|
||
{{< /tabs >}} | ||
|
||
Learn how to use namespacing throughout Dapr: | ||
|
||
- [Service Invocation namespaces]({{< ref service-invocation-namespaces.md >}}) | ||
- [How to: Set up pub/sub namespace consumer groups]({{< ref howto-namespace.md >}}) | ||
- Components: | ||
- [How to: Configure pub/sub components with multiple namespaces]({{< ref pubsub-namespaces.md >}}) | ||
- [Scope components to one or more applications]({{< ref component-scopes.md >}}) | ||
- [Namespaced actors]({{< ref namespaced-actors.md >}}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters