Skip to content

Commit

Permalink
Manually backport PR#2174 to version 3.4 (#2178)
Browse files Browse the repository at this point in the history
* Deprecate Cox Edge content and add an unlisted page for redirects (#2174)

* docs: Add an unlisted page that notifies about the Cox Edge end of life

* docs: Add redirects for Cox Edge content and deprecate the content

* docs: Change the approach to unlisted content to avoid clutter

* chore: Add all Cox Edge pages to redirects

* chore: Replace a link with the unlisted page

* chore: Fix the link I just replaced because... intelligence
  • Loading branch information
yuliiiah authored Feb 2, 2024
1 parent 2fbbb11 commit 7c3a5a3
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 4 deletions.
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)
2 changes: 1 addition & 1 deletion docs/docs-content/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ enhancements.

##### Features

- Support for the [Cox Edge](clusters/public-cloud/cox-edge/cox-edge.md) cloud provider is now available in Palette.
- Support for the [Cox Edge](unlisted/cox-edge-eol.md) cloud provider is now available in Palette.
- Palette introduces a new user sign-in flow for users who previously created an account through SSO and who are a
member of different organizations. Palette prompts you to select the organization to log in to. If you need help
remembering, you can retrieve it using “Forgot your organization name?”.
Expand Down
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 @@ -339,6 +339,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;
6 changes: 5 additions & 1 deletion src/components/IconMapper/dynamicFontAwesomeImports.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ 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 = {
"cubes": faCubes,
Expand All @@ -33,5 +35,7 @@ export const fontAwesomeIcons = {
"terminal": faTerminal,
"lock": faLock,
"gears": faGears,
"screwdriver-wrench": faScrewdriverWrench
"screwdriver-wrench": faScrewdriverWrench,
"eye-slash": faEyeSlash,
"shield": faShield
};

0 comments on commit 7c3a5a3

Please sign in to comment.