From 429bce6f30e4a7384d41ddcecf2d448441f1c35c Mon Sep 17 00:00:00 2001 From: Shivam Kumar Date: Fri, 21 Jan 2022 00:14:31 +0530 Subject: [PATCH 1/3] Update MQTT pubsub to beta (#2113) Signed-off-by: shivam Co-authored-by: Mark Fussell --- .../reference/components-reference/supported-pubsub/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-pubsub/_index.md b/daprdocs/content/en/reference/components-reference/supported-pubsub/_index.md index fb78b1374..4d5c1ccd0 100644 --- a/daprdocs/content/en/reference/components-reference/supported-pubsub/_index.md +++ b/daprdocs/content/en/reference/components-reference/supported-pubsub/_index.md @@ -24,7 +24,7 @@ Table captions: |-------------------------------------------------------|--------| -----| ------------- | | [Apache Kafka]({{< ref setup-apache-kafka.md >}}) | Stable | v1 | 1.5 | | [Hazelcast]({{< ref setup-hazelcast.md >}}) | Alpha | v1 | 1.0 | -| [MQTT]({{< ref setup-mqtt.md >}}) | Alpha | v1 | 1.0 | +| [MQTT]({{< ref setup-mqtt.md >}}) | Beta | v1 | 1.6 | | [NATS Streaming]({{< ref setup-nats-streaming.md >}}) | Beta | v1 | 1.0 | | [In Memory]({{< ref setup-inmemory.md >}}) | Alpha | v1 | 1.4 | | [JetStream]({{< ref setup-jetstream.md >}}) | Alpha | v1 | 1.4 | From 888f47f145ee7f7c8d70409d9d73f7e943b02c28 Mon Sep 17 00:00:00 2001 From: Abel Perez Martinez Date: Thu, 20 Jan 2022 18:59:05 +0000 Subject: [PATCH 2/3] Added notes for EKS users to watch out for hostnework issue (#2112) Signed-off-by: Abel Perez Martinez Co-authored-by: Mark Fussell --- .../troubleshooting/common_issues.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/daprdocs/content/en/operations/troubleshooting/common_issues.md b/daprdocs/content/en/operations/troubleshooting/common_issues.md index f63e0d54d..c374dd00f 100644 --- a/daprdocs/content/en/operations/troubleshooting/common_issues.md +++ b/daprdocs/content/en/operations/troubleshooting/common_issues.md @@ -64,6 +64,32 @@ In order to further diagnose any issue, check the logs of the Dapr sidecar injec *Note: If you installed Dapr to a different namespace, replace dapr-system above with the desired namespace* +If you are deploying Dapr on Amazon EKS and using an overlay network such as Calico, you will need to set `hostNetwork` parameter to true, this is a limitation of EKS with such CNIs. + +You can set this parameter using Helm `values.yaml` file: + +``` +helm upgrade --install dapr dapr/dapr \ + --namespace dapr-system \ + --create-namespace \ + --values values.yaml +``` + +`values.yaml` +```yaml +dapr_sidecar_injector: + hostNetwork: true +``` + +or using command line: + +``` +helm upgrade --install dapr dapr/dapr \ + --namespace dapr-system \ + --create-namespace \ + --set dapr_sidecar_injector.hostNetwork=true +``` + ## My pod is in CrashLoopBackoff or another failed state due to the daprd sidecar If the Dapr sidecar (`daprd`) is taking too long to initialize, this might be surfaced as a failing health check by Kubernetes. From 33981f34f8752d87c3856873efdc98d583eb7177 Mon Sep 17 00:00:00 2001 From: greenie-msft <56556602+greenie-msft@users.noreply.github.com> Date: Thu, 20 Jan 2022 12:35:59 -0800 Subject: [PATCH 3/3] List the specific software dependencies tested for a given Dapr releaseList (#2105) * List the specific software dependencies tested for a given Dapr releaseList Signed-off-by: Nick Greenfield * Add OTEL link Signed-off-by: Nick Greenfield * Change OTEL link Signed-off-by: Nick Greenfield Co-authored-by: Mark Fussell --- .../en/operations/support/support-release-policy.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/operations/support/support-release-policy.md b/daprdocs/content/en/operations/support/support-release-policy.md index 6bd27c761..7bed1e92d 100644 --- a/daprdocs/content/en/operations/support/support-release-policy.md +++ b/daprdocs/content/en/operations/support/support-release-policy.md @@ -95,9 +95,14 @@ After announcing a future breaking change, the change will happen in 2 releases ## Upgrade on Hosting platforms Dapr can support multiple hosting platforms for production. With the 1.0 release the two supported platforms are Kubernetes and physical machines. For Kubernetes upgrades see [Production guidelines on Kubernetes]({{< ref kubernetes-production.md >}}) -### Supported Kubernetes versions +### Supported versions of dependencies +Below is a list of software that the latest version of Dapr (v{{% dapr-latest-version long="true" %}}) has been tested against. -Dapr follows [Kubernetes Version Skew Policy](https://kubernetes.io/releases/version-skew-policy). +| Dependency | Supported Version | +|-----------------------|----------------------------------------------------------------------------------------------------------------------------------| +| Kubernetes | Dapr support for Kubernetes is aligned with [Kubernetes Version Skew Policy](https://kubernetes.io/releases/version-skew-policy/) | +| [Open Telemetry collector (OTEL)](https://github.com/open-telemetry/opentelemetry-collector/releases)| v0.4.0| +| [Prometheus](https://prometheus.io/download/) | v2.28 | ## Related links * Read the [Versioning policy]({{< ref support-versioning.md >}})