diff --git a/packages/manager/.changeset/pr-13315-upcoming-features-1769186942354.md b/packages/manager/.changeset/pr-13315-upcoming-features-1769186942354.md new file mode 100644 index 00000000000..823224b674c --- /dev/null +++ b/packages/manager/.changeset/pr-13315-upcoming-features-1769186942354.md @@ -0,0 +1,5 @@ +--- +"@linode/manager": Upcoming Features +--- + +Add learn more documentation link for PgBouncer in DBaaS ([#13315](https://github.com/linode/manager/pull/13315)) diff --git a/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseAddConnectionPoolDrawer.tsx b/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseAddConnectionPoolDrawer.tsx index 647297523a6..1d74249aec6 100644 --- a/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseAddConnectionPoolDrawer.tsx +++ b/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseAddConnectionPoolDrawer.tsx @@ -14,6 +14,10 @@ import { useSnackbar } from 'notistack'; import * as React from 'react'; import { Controller, useForm, useWatch } from 'react-hook-form'; +import { Link } from 'src/components/Link'; + +import { MANAGE_CONNECTION_POOLS_LEARN_MORE_LINK } from '../../constants'; + import type { ConnectionPool } from '@linode/api-v4'; interface Props { @@ -103,7 +107,8 @@ export const DatabaseAddConnectionPoolDrawer = (props: Props) => { )} Add a PgBouncer connection pool to minimize the use of your server - resources. + resources.{' '} + Learn more.
diff --git a/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseConnectionPools.tsx b/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseConnectionPools.tsx index 4797bd9625c..159335fc07d 100644 --- a/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseConnectionPools.tsx +++ b/packages/manager/src/features/Databases/DatabaseDetail/DatabaseNetworking/DatabaseConnectionPools.tsx @@ -19,11 +19,15 @@ import { } from 'akamai-cds-react-components/Table'; import React from 'react'; +import { Link } from 'src/components/Link'; import { MIN_PAGE_SIZE, PAGE_SIZES, } from 'src/components/PaginationFooter/PaginationFooter.constants'; -import { CONNECTION_POOL_LABEL_CELL_STYLES } from 'src/features/Databases/constants'; +import { + CONNECTION_POOL_LABEL_CELL_STYLES, + MANAGE_CONNECTION_POOLS_LEARN_MORE_LINK, +} from 'src/features/Databases/constants'; import { usePaginationV2 } from 'src/hooks/usePaginationV2'; import { makeSettingsItemStyles } from '../../shared.styles'; @@ -82,7 +86,10 @@ export const DatabaseConnectionPools = ({ database }: Props) => { Manage PgBouncer connection pools to minimize the use of your server - resources. + resources.{' '} + + Learn more. +