From 8f4776ff4e26e0634e20a7cd221a9794fd571167 Mon Sep 17 00:00:00 2001 From: Elsa Mayra Irgens Date: Mon, 23 Dec 2024 13:54:30 +0100 Subject: [PATCH] added when not to use Radix --- public-site/docs/start/not-radix/index.md | 19 +++++++++++++++++++ public-site/sidebars.ts | 1 + 2 files changed, 20 insertions(+) create mode 100644 public-site/docs/start/not-radix/index.md diff --git a/public-site/docs/start/not-radix/index.md b/public-site/docs/start/not-radix/index.md new file mode 100644 index 00000000..9d253428 --- /dev/null +++ b/public-site/docs/start/not-radix/index.md @@ -0,0 +1,19 @@ +--- +title: When to not use Radix +--- + +## When to not use Radix + +There will be certain circumstances that will Radix not suitable for your applications, some of these can be + +- On-prem connectivity is required +- Need to use own terraform configurations +- Need to use own helm charts or flux +- Need to use DAPR +- Need to use sidecars +- Need to have direct access to Kubernetes components (pods, secrets, etc.) +- Need low-latency persistant storage (eg. databases and similar) +- Needs to accept traffic other than HTTP (eg. mqtt or UDP) +- Need to run own operators (e.g. redis operator to run Redis database in cluster) + +However there are workaround for many of these cases, use the Radix community to ask for guidance. \ No newline at end of file diff --git a/public-site/sidebars.ts b/public-site/sidebars.ts index 9e54660e..a2764120 100644 --- a/public-site/sidebars.ts +++ b/public-site/sidebars.ts @@ -30,6 +30,7 @@ const sidebars: SidebarsConfig = { 'start/workflows/index', 'start/radix-clusters/index', 'start/onboarding/index', + 'start/not-radix/index', ], }, ],