Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate Cox Edge content and add an unlisted page for redirects #2174

Merged
merged 4 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/docs-content/clusters/public-cloud/public-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ The following pages provide detailed instructions for setting up new workload cl

- [Azure](azure/azure.md)

- [Cox Edge](cox-edge/cox-edge.md)

- [Google Cloud](gcp/gcp.md)

- [Tencent](tke.md)
3 changes: 3 additions & 0 deletions docs/docs-content/unlisted/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"position": 10000
}
18 changes: 18 additions & 0 deletions docs/docs-content/unlisted/cox-edge-eol.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
sidebar_label: "Cox Edge End of Life"
title: "Cox Edge End of Life"
description: "Learn about the Cox Edge alternatives Palette supports."
icon: ""
hide_table_of_contents: false
unlisted: true
tags: ["public cloud", "cox-edge", "unlisted"]
---

In January 2024, Cox Communications ended all support for Cox Edge, their public cloud provider. Consequently, Palette
no longer supports Cox Edge and its associated features. Here's a list of alternative cloud providers you could start
using with Palette and Palette VerteX today:

- [Amazon Web Services](/clusters/public-cloud/aws/)
- [Azure](/clusters/public-cloud/azure/)
- [Google Cloud](/clusters/public-cloud/gcp/)
- [Tencent](/clusters/public-cloud/tke)
10 changes: 10 additions & 0 deletions docs/docs-content/unlisted/unlisted.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
sidebar_label: "Unlisted Content"
title: "Unlisted Content"
description: "This section contains content that is meant to be unlisted."
hide_table_of_contents: false
sidebar_position: 0
sidebar_custom_props:
icon: "eye-slash"
unlisted: true
---
9 changes: 9 additions & 0 deletions redirects.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,15 @@ const redirects = [
from: `/compliance`,
to: `/legal-licenses/compliance`,
},
{
from: [
`/clusters/public-cloud/cox-edge/`,
`/clusters/public-cloud/cox-edge/add-cox-edge-accounts`,
`/clusters/public-cloud/cox-edge/create-cox-cluster`,
`/clusters/public-cloud/cox-edge/network-rules`,
],
to: `/unlisted/cox-edge-eol`,
},
];

module.exports = redirects;
2 changes: 2 additions & 0 deletions src/components/IconMapper/dynamicFontAwesomeImports.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { faTerminal } from '@fortawesome/free-solid-svg-icons';
import { faLock } from '@fortawesome/free-solid-svg-icons';
import { faGears } from '@fortawesome/free-solid-svg-icons';
import { faScrewdriverWrench } from '@fortawesome/free-solid-svg-icons';
import { faEyeSlash } from '@fortawesome/free-solid-svg-icons';
import { faShield } from '@fortawesome/free-solid-svg-icons';

export const fontAwesomeIcons = {
Expand All @@ -35,5 +36,6 @@ export const fontAwesomeIcons = {
"lock": faLock,
"gears": faGears,
"screwdriver-wrench": faScrewdriverWrench,
"eye-slash": faEyeSlash,
"shield": faShield
};
Loading