diff --git a/packages/manager/.changeset/pr-11098-changed-1728938497573.md b/packages/manager/.changeset/pr-11098-changed-1728938497573.md new file mode 100644 index 00000000000..f09ce53669f --- /dev/null +++ b/packages/manager/.changeset/pr-11098-changed-1728938497573.md @@ -0,0 +1,6 @@ +--- +"@linode/manager": Changed +--- + +Revise VPC Not Recommended Configuration Tooltip Text + ([#11098](https://github.com/linode/manager/pull/11098)) diff --git a/packages/manager/src/features/VPCs/VPCDetail/SubnetLinodeRow.tsx b/packages/manager/src/features/VPCs/VPCDetail/SubnetLinodeRow.tsx index 6d51617e316..d6c162886bd 100644 --- a/packages/manager/src/features/VPCs/VPCDetail/SubnetLinodeRow.tsx +++ b/packages/manager/src/features/VPCs/VPCDetail/SubnetLinodeRow.tsx @@ -19,7 +19,6 @@ import { capitalizeAllWords } from 'src/utilities/capitalize'; import { determineNoneSingleOrMultipleWithChip } from 'src/utilities/noneSingleOrMultipleWithChip'; import { - NETWORK_INTERFACES_GUIDE_URL, VPC_REBOOT_MESSAGE, WARNING_ICON_UNRECOMMENDED_CONFIG, } from '../constants'; @@ -121,12 +120,9 @@ export const SubnetLinodeRow = (props: Props) => { - This Linode is using an unrecommended configuration profile. Update - its configuration profile to avoid connectivity issues. Read our{' '} - - Configuration Profiles - {' '} - guide for more information. + This Linode is using a configuration profile with a Networking + setting that is not recommended. To avoid potential connectivity + issues, edit the Linode’s configuration. } icon={} diff --git a/packages/manager/src/features/VPCs/constants.ts b/packages/manager/src/features/VPCs/constants.ts index 7d9e93fdbbf..c07e3b17ffb 100644 --- a/packages/manager/src/features/VPCs/constants.ts +++ b/packages/manager/src/features/VPCs/constants.ts @@ -59,9 +59,6 @@ export const NOT_NATTED_HELPER_TEXT = 'The Linode will not be able to access the internet. If this Linode needs access to the internet, we recommend checking the “Assign a public IPv4 address for this Linode” checkbox which will enable 1:1 NAT on the VPC interface.'; // Links -export const NETWORK_INTERFACES_GUIDE_URL = - 'https://techdocs.akamai.com/cloud-computing/docs/manage-configuration-profiles-on-a-compute-instance'; - export const VPC_DOCS_LINK = 'https://techdocs.akamai.com/cloud-computing/docs/vpc';