From 27be212b735b3b5ac2804858f8a766b035ba898b Mon Sep 17 00:00:00 2001 From: tbaka <48444023+tbaka@users.noreply.github.com> Date: Tue, 21 May 2024 14:29:08 -0500 Subject: [PATCH 1/7] add couchbase, apache kafka stackscript + oneclick --- .../src/features/OneClickApps/oneClickApps.ts | 44 +++++++++++++++++++ .../features/StackScripts/stackScriptUtils.ts | 2 + 2 files changed, 46 insertions(+) diff --git a/packages/manager/src/features/OneClickApps/oneClickApps.ts b/packages/manager/src/features/OneClickApps/oneClickApps.ts index f5cb1bea442..6303ef5f729 100644 --- a/packages/manager/src/features/OneClickApps/oneClickApps.ts +++ b/packages/manager/src/features/OneClickApps/oneClickApps.ts @@ -116,6 +116,27 @@ export const oneClickApps: OCA[] = [ 'Open source workflow management platform for data engineering pipelines.', website: 'https://airflow.apache.org/', }, + { + alt_description: 'Open source real-time data stream management cluster.', + alt_name: 'Data stream publisher-subscriber cluster', + categories: ['Development'], + colors: { + end: '5CA2A2', + start: '00C7D4', + }, + description: `Apache Kafka supports a wide range of applications from log aggregation to real-time analytics. Kafka provides a foundation for building data pipelines, event-driven architectures, or stream processing applications.`, + logo_url: 'apachekafka.svg', + name: 'Apache Kafka Cluster', + related_guides: [ + { + href: + 'https://www.linode.com/docs/products/tools/marketplace/guides/apache-kafka/', + title: 'Deploy an Apache Kafka cluster through the Linode Marketplace', + }, + ], + summary: 'Open source data streaming.', + website: 'https://kafka.apache.org/', + }, { alt_description: 'A self-hosted backend-as-a-service platform that provides developers with all the core APIs required to build any application.', @@ -274,6 +295,29 @@ export const oneClickApps: OCA[] = [ 'All-in-one database deployment, management, and monitoring system.', website: 'https://docs.severalnines.com/docs/clustercontrol/', }, + { + alt_description: + 'Highly available, five-node enterprise NoSQL database cluster.', + alt_name: 'Couchbase Enterprise Server', + categories: ['Databases'], + colors: { + end: 'EC1018', + start: 'fffff', + }, + description: `Couchbase Enterprise Server is a high-performance NoSQL database, built for scale. Couchbase Server is designed with memory-first architecture, built-in cache and workload isolation.`, + logo_url: 'couchbase.svg', + name: 'Couchbase Enterprise Server Cluster', + related_guides: [ + { + href: + 'https://www.linode.com/docs/products/tools/marketplace/guides/couchbase/', + title: + 'Deploy a Couchbase Enterprise Server cluster through the Linode Marketplace', + }, + ], + summary: 'NoSQL production database cluster.', + website: 'https://www.couchbase.com/', + }, { alt_description: 'Linux-based web hosting control panel for managing websites, servers, databases, and more.', diff --git a/packages/manager/src/features/StackScripts/stackScriptUtils.ts b/packages/manager/src/features/StackScripts/stackScriptUtils.ts index f66cb6420c1..30f60a10419 100644 --- a/packages/manager/src/features/StackScripts/stackScriptUtils.ts +++ b/packages/manager/src/features/StackScripts/stackScriptUtils.ts @@ -131,6 +131,8 @@ export const baseApps = { '1329462': 'LinuxGSM', '1350733': 'Jitsi Cluster', '1350783': 'GlusterFS Cluster', + '1366191': 'Couchbase Cluster', + '1377657': 'Apache Kafka Cluster', }; const oneClickFilter = [ From 68a45e528cb04ea19ed11f0cec0ee7391cc7af91 Mon Sep 17 00:00:00 2001 From: tbaka <48444023+tbaka@users.noreply.github.com> Date: Tue, 21 May 2024 15:12:07 -0500 Subject: [PATCH 2/7] add assets + update logo url --- packages/manager/public/assets/couchbase.svg | 1 + packages/manager/public/assets/kafka.svg | 1 + packages/manager/public/assets/white/couchbase.svg | 1 + packages/manager/public/assets/white/kafka.svg | 1 + packages/manager/src/features/OneClickApps/oneClickApps.ts | 2 +- 5 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 packages/manager/public/assets/couchbase.svg create mode 100755 packages/manager/public/assets/kafka.svg create mode 100755 packages/manager/public/assets/white/couchbase.svg create mode 100755 packages/manager/public/assets/white/kafka.svg diff --git a/packages/manager/public/assets/couchbase.svg b/packages/manager/public/assets/couchbase.svg new file mode 100755 index 00000000000..1e0f601b1fb --- /dev/null +++ b/packages/manager/public/assets/couchbase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/manager/public/assets/kafka.svg b/packages/manager/public/assets/kafka.svg new file mode 100755 index 00000000000..fd66ea792dd --- /dev/null +++ b/packages/manager/public/assets/kafka.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/manager/public/assets/white/couchbase.svg b/packages/manager/public/assets/white/couchbase.svg new file mode 100755 index 00000000000..eb60907d03b --- /dev/null +++ b/packages/manager/public/assets/white/couchbase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/manager/public/assets/white/kafka.svg b/packages/manager/public/assets/white/kafka.svg new file mode 100755 index 00000000000..fd495096ea9 --- /dev/null +++ b/packages/manager/public/assets/white/kafka.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/manager/src/features/OneClickApps/oneClickApps.ts b/packages/manager/src/features/OneClickApps/oneClickApps.ts index 6303ef5f729..dfa4a2c9a9b 100644 --- a/packages/manager/src/features/OneClickApps/oneClickApps.ts +++ b/packages/manager/src/features/OneClickApps/oneClickApps.ts @@ -125,7 +125,7 @@ export const oneClickApps: OCA[] = [ start: '00C7D4', }, description: `Apache Kafka supports a wide range of applications from log aggregation to real-time analytics. Kafka provides a foundation for building data pipelines, event-driven architectures, or stream processing applications.`, - logo_url: 'apachekafka.svg', + logo_url: 'kafka.svg', name: 'Apache Kafka Cluster', related_guides: [ { From d9a42a9b7eabbee9dbcf27033a06d60b1f197bcf Mon Sep 17 00:00:00 2001 From: tbaka <48444023+tbaka@users.noreply.github.com> Date: Tue, 21 May 2024 15:22:04 -0500 Subject: [PATCH 3/7] Added changeset: adds Apache Kafka Cluster and Couchbase Cluster Marketplace Apps --- packages/manager/.changeset/pr-10500-added-1716322924328.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 packages/manager/.changeset/pr-10500-added-1716322924328.md diff --git a/packages/manager/.changeset/pr-10500-added-1716322924328.md b/packages/manager/.changeset/pr-10500-added-1716322924328.md new file mode 100644 index 00000000000..bad66315c82 --- /dev/null +++ b/packages/manager/.changeset/pr-10500-added-1716322924328.md @@ -0,0 +1,5 @@ +--- +"@linode/manager": Added +--- + +adds Apache Kafka Cluster and Couchbase Cluster Marketplace Apps ([#10500](https://github.com/linode/manager/pull/10500)) From d10367e413a1addcf97798279ab777da75fddf8c Mon Sep 17 00:00:00 2001 From: tbaka <48444023+tbaka@users.noreply.github.com> Date: Wed, 22 May 2024 12:17:54 -0500 Subject: [PATCH 4/7] sync upstream dev, update oneClickAppsv2.ts --- .../features/OneClickApps/oneClickAppsv2.ts | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts index f8106bcd63e..2ae69ee6ff1 100644 --- a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts +++ b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts @@ -2456,4 +2456,48 @@ export const oneClickApps: Record = { summary: 'Open source network filesystem.', website: 'https://www.gluster.org/', }, + 1366191: { + alt_description: + 'Highly available, five-node enterprise NoSQL database cluster.', + alt_name: 'Couchbase Enterprise Server', + categories: ['Databases'], + colors: { + end: 'EC1018', + start: 'fffff', + }, + description: `Couchbase Enterprise Server is a high-performance NoSQL database, built for scale. Couchbase Server is designed with memory-first architecture, built-in cache and workload isolation.`, + logo_url: 'couchbase.svg', + name: 'Couchbase Enterprise Server Cluster', + related_guides: [ + { + href: + 'https://www.linode.com/docs/products/tools/marketplace/guides/couchbase/', + title: + 'Deploy a Couchbase Enterprise Server cluster through the Linode Marketplace', + }, + ], + summary: 'NoSQL production database cluster.', + website: 'https://www.couchbase.com/', + }, + 1377657: { + alt_description: 'Open source real-time data stream management cluster.', + alt_name: 'Data stream publisher-subscriber cluster', + categories: ['Development'], + colors: { + end: '5CA2A2', + start: '00C7D4', + }, + description: `Apache Kafka supports a wide range of applications from log aggregation to real-time analytics. Kafka provides a foundation for building data pipelines, event-driven architectures, or stream processing applications.`, + logo_url: 'kafka.svg', + name: 'Apache Kafka Cluster', + related_guides: [ + { + href: + 'https://www.linode.com/docs/products/tools/marketplace/guides/apache-kafka/', + title: 'Deploy an Apache Kafka cluster through the Linode Marketplace', + }, + ], + summary: 'Open source data streaming.', + website: 'https://kafka.apache.org/', + }, }; From 77cfbfae7ce10c549ccab0639e1284d7e90f7c2b Mon Sep 17 00:00:00 2001 From: tbaka <48444023+tbaka@users.noreply.github.com> Date: Thu, 23 May 2024 10:23:51 -0500 Subject: [PATCH 5/7] add cassandra cluster entries + assets --- packages/manager/public/assets/cassandra.svg | 81 +++++++++++++++++++ .../manager/public/assets/white/cassandra.svg | 44 ++++++++++ .../src/features/OneClickApps/oneClickApps.ts | 22 +++++ .../features/OneClickApps/oneClickAppsv2.ts | 22 +++++ .../features/StackScripts/stackScriptUtils.ts | 1 + 5 files changed, 170 insertions(+) create mode 100755 packages/manager/public/assets/cassandra.svg create mode 100755 packages/manager/public/assets/white/cassandra.svg diff --git a/packages/manager/public/assets/cassandra.svg b/packages/manager/public/assets/cassandra.svg new file mode 100755 index 00000000000..8a2eff9fb19 --- /dev/null +++ b/packages/manager/public/assets/cassandra.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/manager/public/assets/white/cassandra.svg b/packages/manager/public/assets/white/cassandra.svg new file mode 100755 index 00000000000..efa2d283944 --- /dev/null +++ b/packages/manager/public/assets/white/cassandra.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/manager/src/features/OneClickApps/oneClickApps.ts b/packages/manager/src/features/OneClickApps/oneClickApps.ts index e0a4aac4880..77ca67a7769 100644 --- a/packages/manager/src/features/OneClickApps/oneClickApps.ts +++ b/packages/manager/src/features/OneClickApps/oneClickApps.ts @@ -119,6 +119,28 @@ export const oneClickApps: OCA[] = [ 'Open source workflow management platform for data engineering pipelines.', website: 'https://airflow.apache.org/', }, + { + alt_description: + 'Lineraly scalable, fault tolerant, open source NoSQL distributed database.', + alt_name: 'NoSQL database cluster', + categories: ['Databases'], + colors: { + end: '1486B1', + start: '85A355', + }, + description: `Distributed, masterless, replicating NoSQL database cluster.`, + logo_url: 'cassandra.svg', + name: 'Apache Cassandra Cluster', + related_guides: [ + { + href: + 'https://www.linode.com/docs/products/tools/marketplace/guides/apache-cassandra-cluster/', + title: 'Deploy Apache Cassandra Cluster through the Linode Marketplace', + }, + ], + summary: 'Open source NoSQL database cluster.', + website: 'https://cassandra.apache.org/doc/latest/', + }, { alt_description: 'Open source real-time data stream management cluster.', alt_name: 'Data stream publisher-subscriber cluster', diff --git a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts index 2ae69ee6ff1..ff1146f59e9 100644 --- a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts +++ b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts @@ -2500,4 +2500,26 @@ export const oneClickApps: Record = { summary: 'Open source data streaming.', website: 'https://kafka.apache.org/', }, + 1350845: { + alt_description: + 'Lineraly scalable, fault tolerant, open source NoSQL distributed database.', + alt_name: 'NoSQL database cluster', + categories: ['Databases'], + colors: { + end: '1486B1', + start: '85A355', + }, + description: `Distributed, masterless, replicating NoSQL database cluster.`, + logo_url: 'cassandra.svg', + name: 'Apache Cassandra Cluster', + related_guides: [ + { + href: + 'https://www.linode.com/docs/products/tools/marketplace/guides/apache-cassandra-cluster/', + title: 'Deploy Apache Cassandra Cluster through the Linode Marketplace', + }, + ], + summary: 'Open source NoSQL database cluster.', + website: 'https://cassandra.apache.org/doc/latest/', + }, }; diff --git a/packages/manager/src/features/StackScripts/stackScriptUtils.ts b/packages/manager/src/features/StackScripts/stackScriptUtils.ts index 30f60a10419..803448a0dde 100644 --- a/packages/manager/src/features/StackScripts/stackScriptUtils.ts +++ b/packages/manager/src/features/StackScripts/stackScriptUtils.ts @@ -133,6 +133,7 @@ export const baseApps = { '1350783': 'GlusterFS Cluster', '1366191': 'Couchbase Cluster', '1377657': 'Apache Kafka Cluster', + '1350845': 'Apache Cassandra Cluster', }; const oneClickFilter = [ From 90d4c10268773f9b5a0f558d58b3627dd703ced8 Mon Sep 17 00:00:00 2001 From: tbaka <48444023+tbaka@users.noreply.github.com> Date: Fri, 24 May 2024 13:13:34 -0500 Subject: [PATCH 6/7] update couchbase name, rename apache svgs --- .../public/assets/{cassandra.svg => apachecassandra.svg} | 0 .../manager/public/assets/{kafka.svg => apachekafka.svg} | 0 .../assets/white/{cassandra.svg => apachecassandra.svg} | 0 .../public/assets/white/{kafka.svg => apachekafka.svg} | 0 .../manager/src/features/OneClickApps/oneClickApps.ts | 8 ++++---- .../manager/src/features/OneClickApps/oneClickAppsv2.ts | 8 ++++---- 6 files changed, 8 insertions(+), 8 deletions(-) rename packages/manager/public/assets/{cassandra.svg => apachecassandra.svg} (100%) rename packages/manager/public/assets/{kafka.svg => apachekafka.svg} (100%) rename packages/manager/public/assets/white/{cassandra.svg => apachecassandra.svg} (100%) rename packages/manager/public/assets/white/{kafka.svg => apachekafka.svg} (100%) diff --git a/packages/manager/public/assets/cassandra.svg b/packages/manager/public/assets/apachecassandra.svg similarity index 100% rename from packages/manager/public/assets/cassandra.svg rename to packages/manager/public/assets/apachecassandra.svg diff --git a/packages/manager/public/assets/kafka.svg b/packages/manager/public/assets/apachekafka.svg similarity index 100% rename from packages/manager/public/assets/kafka.svg rename to packages/manager/public/assets/apachekafka.svg diff --git a/packages/manager/public/assets/white/cassandra.svg b/packages/manager/public/assets/white/apachecassandra.svg similarity index 100% rename from packages/manager/public/assets/white/cassandra.svg rename to packages/manager/public/assets/white/apachecassandra.svg diff --git a/packages/manager/public/assets/white/kafka.svg b/packages/manager/public/assets/white/apachekafka.svg similarity index 100% rename from packages/manager/public/assets/white/kafka.svg rename to packages/manager/public/assets/white/apachekafka.svg diff --git a/packages/manager/src/features/OneClickApps/oneClickApps.ts b/packages/manager/src/features/OneClickApps/oneClickApps.ts index 77ca67a7769..ce1d4214c2f 100644 --- a/packages/manager/src/features/OneClickApps/oneClickApps.ts +++ b/packages/manager/src/features/OneClickApps/oneClickApps.ts @@ -129,7 +129,7 @@ export const oneClickApps: OCA[] = [ start: '85A355', }, description: `Distributed, masterless, replicating NoSQL database cluster.`, - logo_url: 'cassandra.svg', + logo_url: 'apachecassandra.svg', name: 'Apache Cassandra Cluster', related_guides: [ { @@ -150,7 +150,7 @@ export const oneClickApps: OCA[] = [ start: '00C7D4', }, description: `Apache Kafka supports a wide range of applications from log aggregation to real-time analytics. Kafka provides a foundation for building data pipelines, event-driven architectures, or stream processing applications.`, - logo_url: 'kafka.svg', + logo_url: 'apachekafka.svg', name: 'Apache Kafka Cluster', related_guides: [ { @@ -323,7 +323,7 @@ export const oneClickApps: OCA[] = [ { alt_description: 'Highly available, five-node enterprise NoSQL database cluster.', - alt_name: 'Couchbase Enterprise Server', + alt_name: 'Couchbase Enterprise Server Cluster', categories: ['Databases'], colors: { end: 'EC1018', @@ -331,7 +331,7 @@ export const oneClickApps: OCA[] = [ }, description: `Couchbase Enterprise Server is a high-performance NoSQL database, built for scale. Couchbase Server is designed with memory-first architecture, built-in cache and workload isolation.`, logo_url: 'couchbase.svg', - name: 'Couchbase Enterprise Server Cluster', + name: 'Couchbase Cluster', related_guides: [ { href: diff --git a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts index ff1146f59e9..2e2cec8bdf5 100644 --- a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts +++ b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts @@ -2459,7 +2459,7 @@ export const oneClickApps: Record = { 1366191: { alt_description: 'Highly available, five-node enterprise NoSQL database cluster.', - alt_name: 'Couchbase Enterprise Server', + alt_name: 'Couchbase Enterprise Server Cluster', categories: ['Databases'], colors: { end: 'EC1018', @@ -2467,7 +2467,7 @@ export const oneClickApps: Record = { }, description: `Couchbase Enterprise Server is a high-performance NoSQL database, built for scale. Couchbase Server is designed with memory-first architecture, built-in cache and workload isolation.`, logo_url: 'couchbase.svg', - name: 'Couchbase Enterprise Server Cluster', + name: 'Couchbase Cluster', related_guides: [ { href: @@ -2488,7 +2488,7 @@ export const oneClickApps: Record = { start: '00C7D4', }, description: `Apache Kafka supports a wide range of applications from log aggregation to real-time analytics. Kafka provides a foundation for building data pipelines, event-driven architectures, or stream processing applications.`, - logo_url: 'kafka.svg', + logo_url: 'apachekafka.svg', name: 'Apache Kafka Cluster', related_guides: [ { @@ -2510,7 +2510,7 @@ export const oneClickApps: Record = { start: '85A355', }, description: `Distributed, masterless, replicating NoSQL database cluster.`, - logo_url: 'cassandra.svg', + logo_url: 'apachecassandra.svg', name: 'Apache Cassandra Cluster', related_guides: [ { From 611fb7041e65348ce7ca858ea0edb549e92aa564 Mon Sep 17 00:00:00 2001 From: tbaka <48444023+tbaka@users.noreply.github.com> Date: Wed, 29 May 2024 09:42:43 -0500 Subject: [PATCH 7/7] delay cassandra, cb gradient --- .../manager/public/assets/apachecassandra.svg | 81 ------------------- .../public/assets/white/apachecassandra.svg | 44 ---------- .../src/features/OneClickApps/oneClickApps.ts | 24 +----- .../features/OneClickApps/oneClickAppsv2.ts | 24 +----- .../features/StackScripts/stackScriptUtils.ts | 1 - 5 files changed, 2 insertions(+), 172 deletions(-) delete mode 100755 packages/manager/public/assets/apachecassandra.svg delete mode 100755 packages/manager/public/assets/white/apachecassandra.svg diff --git a/packages/manager/public/assets/apachecassandra.svg b/packages/manager/public/assets/apachecassandra.svg deleted file mode 100755 index 8a2eff9fb19..00000000000 --- a/packages/manager/public/assets/apachecassandra.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/manager/public/assets/white/apachecassandra.svg b/packages/manager/public/assets/white/apachecassandra.svg deleted file mode 100755 index efa2d283944..00000000000 --- a/packages/manager/public/assets/white/apachecassandra.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/manager/src/features/OneClickApps/oneClickApps.ts b/packages/manager/src/features/OneClickApps/oneClickApps.ts index ce1d4214c2f..d1c14d8fe88 100644 --- a/packages/manager/src/features/OneClickApps/oneClickApps.ts +++ b/packages/manager/src/features/OneClickApps/oneClickApps.ts @@ -119,28 +119,6 @@ export const oneClickApps: OCA[] = [ 'Open source workflow management platform for data engineering pipelines.', website: 'https://airflow.apache.org/', }, - { - alt_description: - 'Lineraly scalable, fault tolerant, open source NoSQL distributed database.', - alt_name: 'NoSQL database cluster', - categories: ['Databases'], - colors: { - end: '1486B1', - start: '85A355', - }, - description: `Distributed, masterless, replicating NoSQL database cluster.`, - logo_url: 'apachecassandra.svg', - name: 'Apache Cassandra Cluster', - related_guides: [ - { - href: - 'https://www.linode.com/docs/products/tools/marketplace/guides/apache-cassandra-cluster/', - title: 'Deploy Apache Cassandra Cluster through the Linode Marketplace', - }, - ], - summary: 'Open source NoSQL database cluster.', - website: 'https://cassandra.apache.org/doc/latest/', - }, { alt_description: 'Open source real-time data stream management cluster.', alt_name: 'Data stream publisher-subscriber cluster', @@ -327,7 +305,7 @@ export const oneClickApps: OCA[] = [ categories: ['Databases'], colors: { end: 'EC1018', - start: 'fffff', + start: '333333', }, description: `Couchbase Enterprise Server is a high-performance NoSQL database, built for scale. Couchbase Server is designed with memory-first architecture, built-in cache and workload isolation.`, logo_url: 'couchbase.svg', diff --git a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts index 2e2cec8bdf5..1096f8ba8a8 100644 --- a/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts +++ b/packages/manager/src/features/OneClickApps/oneClickAppsv2.ts @@ -2463,7 +2463,7 @@ export const oneClickApps: Record = { categories: ['Databases'], colors: { end: 'EC1018', - start: 'fffff', + start: '333333', }, description: `Couchbase Enterprise Server is a high-performance NoSQL database, built for scale. Couchbase Server is designed with memory-first architecture, built-in cache and workload isolation.`, logo_url: 'couchbase.svg', @@ -2500,26 +2500,4 @@ export const oneClickApps: Record = { summary: 'Open source data streaming.', website: 'https://kafka.apache.org/', }, - 1350845: { - alt_description: - 'Lineraly scalable, fault tolerant, open source NoSQL distributed database.', - alt_name: 'NoSQL database cluster', - categories: ['Databases'], - colors: { - end: '1486B1', - start: '85A355', - }, - description: `Distributed, masterless, replicating NoSQL database cluster.`, - logo_url: 'apachecassandra.svg', - name: 'Apache Cassandra Cluster', - related_guides: [ - { - href: - 'https://www.linode.com/docs/products/tools/marketplace/guides/apache-cassandra-cluster/', - title: 'Deploy Apache Cassandra Cluster through the Linode Marketplace', - }, - ], - summary: 'Open source NoSQL database cluster.', - website: 'https://cassandra.apache.org/doc/latest/', - }, }; diff --git a/packages/manager/src/features/StackScripts/stackScriptUtils.ts b/packages/manager/src/features/StackScripts/stackScriptUtils.ts index 803448a0dde..30f60a10419 100644 --- a/packages/manager/src/features/StackScripts/stackScriptUtils.ts +++ b/packages/manager/src/features/StackScripts/stackScriptUtils.ts @@ -133,7 +133,6 @@ export const baseApps = { '1350783': 'GlusterFS Cluster', '1366191': 'Couchbase Cluster', '1377657': 'Apache Kafka Cluster', - '1350845': 'Apache Cassandra Cluster', }; const oneClickFilter = [