diff --git a/README.md b/README.md index 4663e4983c..1240eb8737 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ The `filename` property value can be any file name path which is relative to the We added a new property `class` which allows you to override the CSS class of the image. Images have by default a `block` display in Tailwind. You can change this by setting the class property to `inline`. The following example shows two images that are in a single line: ``` -{{< image filename="/images/rc/icon-database-update-status-pending.png#no-click" alt="Pending database status" class="inline" >}}   {{< image filename="/images/rc/icon-database-update-status-active.png#no-click" alt="Active database status" class="inline" >}} +{{< image filename="/images/rc/icon-database-update-status-pending.png#no-click" alt="Pending database status" class="inline" >}}   {{< image filename="/images/rc/icon-database-status-active.png#no-click" alt="Active database status" class="inline" >}} ``` ### Templating diff --git a/build/image_report.py b/build/image_report.py index cc11cc49ac..bf94bf4fc7 100644 --- a/build/image_report.py +++ b/build/image_report.py @@ -76,12 +76,22 @@ def scan_file(path: str, verbose: bool = True) -> list: print(f"Checking for images not found in '{args.pathname}' that are in '{args.find_unused[0]}'") unused_images = [] + total_images = 0 for root, dirs, files in os.walk(args.find_unused[0]): for file in files: - if (file.endswith(".png") or file.endswith(".jpg") or file.endswith(".webp")) and not any(file in img for img in unique_images): - img_filepath = os.path.join(root, file) - print(f" Image '{img_filepath}' not found in '{args.pathname}'") - unused_images.append(img_filepath) - - print(f"Found {len(unused_images)} unused images.") + if (file.endswith(".png") or file.endswith(".jpg") or file.endswith(".webp")): + total_images += 1 + if not any(file in img for img in unique_images): + img_filepath = os.path.join(root, file) + print(f" Image '{img_filepath}' not found in '{args.pathname}'") + unused_images.append(img_filepath) + + print(f"Found {len(unused_images)} unused images out of {total_images} images in '{args.find_unused[0]}.'") + + if len(unused_images) > 0: + print("Do you want to remove these images? (y/n) (DO NOT DO ON MAIN BRANCH!)") + if input().lower() == "y": + for img in unused_images: + os.remove(img) + print(f"Removed '{img}'") diff --git a/content/embeds/rc-tags-tag-module.md b/content/embeds/rc-tags-tag-module.md index 11a3f48d75..d6b36a4806 100644 --- a/content/embeds/rc-tags-tag-module.md +++ b/content/embeds/rc-tags-tag-module.md @@ -12,7 +12,7 @@ After you add your first tag, you can: - Select **Delete** next to a tag to delete it. - {{Delete button.}} + {{Delete button.}} - Select **Add additional tag** to add another tag. diff --git a/content/integrate/amazon-bedrock/set-up-redis.md b/content/integrate/amazon-bedrock/set-up-redis.md index 1495b66d03..5dbd84546b 100644 --- a/content/integrate/amazon-bedrock/set-up-redis.md +++ b/content/integrate/amazon-bedrock/set-up-redis.md @@ -185,7 +185,7 @@ To create your vector index in Redis Insight: 1. In the [Redis Cloud console](https://cloud.redis.io/), in your database's **Configuration** tab, select the **Connect** button next to your database to open the connection wizard. - {{< image filename="/images/rc/connection-wizard-button.png#no-click" alt="Connect button." >}} + {{< image filename="/images/rc/button-connect.png#no-click" alt="Connect button." >}} 1. In the connection wizard, under **Redis Insight Desktop**, select **Public Endpoint**. Select **Open with Redis Insight** to connect to the database with Redis Insight. diff --git a/content/operate/rc/api/get-started/enable-the-api.md b/content/operate/rc/api/get-started/enable-the-api.md index 4357a8ea2e..d8acb5abc7 100644 --- a/content/operate/rc/api/get-started/enable-the-api.md +++ b/content/operate/rc/api/get-started/enable-the-api.md @@ -23,7 +23,7 @@ To enable the API: 1. If a **Copy** button appears to the right of the API account key, the API is enabled. This button copies the account key to the Clipboard. - {{Use the **Copy** button to copy the access key to the Clipboard.}} + {{Use the **Copy** button to copy the access key to the Clipboard.}} If you see an **Enable API** button, select it to enable the API and generate your API account key. diff --git a/content/operate/rc/api/get-started/manage-api-keys.md b/content/operate/rc/api/get-started/manage-api-keys.md index 3e15c21af5..5b112a2ba5 100644 --- a/content/operate/rc/api/get-started/manage-api-keys.md +++ b/content/operate/rc/api/get-started/manage-api-keys.md @@ -37,7 +37,7 @@ By default, the **API account key** is masked; that is, it is obscured for secur The **Copy** button copies the account key to the Clipboard. -{{The **Copy** button copies the account key to the Clipboard.}} +{{The **Copy** button copies the account key to the Clipboard.}} ## API user keys @@ -51,7 +51,7 @@ Users can have more than one user key; however, users should not share user keys Use the **Add** button to create a new user key. -{{Use the **Add** button to begin creating a new user key.}} +{{Use the **Add** button to begin creating a new user key.}} When you do this, you're prompted for the **Key name** and the associated **User name**. @@ -89,7 +89,7 @@ To delete a user key: 2. Select the **Delete** button. - {{Select the **Delete** button to begin deleting the selected user key.}} + {{Select the **Delete** button to begin deleting the selected user key.}} 3. This displays the **Delete API secret key** dialog box. @@ -113,7 +113,7 @@ To manage the CIDR allow list: 3. Enter each allowed IP address in [CIDR format](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation) (example: `127.1.0.0/24`) and then select the **Save** button. - {{Use the **Save** button to save a CIDR allow list rule.}} + {{Use the **Save** button to save a CIDR allow list rule.}} Use the **Add CIDR rule** button to add additional addresses to the list. @@ -121,4 +121,4 @@ To manage the CIDR allow list: Use the **Edit** button to change the address for a rule or the **Delete button** to remove a rule. - {{Use the **Edit** button to change the address for a CIDR allow list rule.}}   {{Use the **Delete** button to remove an address from the CIDR allow list.}} + {{Use the **Edit** button to change the address for a CIDR allow list rule.}}   {{Use the **Delete** button to remove an address from the CIDR allow list.}} diff --git a/content/operate/rc/databases/connect/_index.md b/content/operate/rc/databases/connect/_index.md index 6ee29c4f5e..f8958e27d4 100644 --- a/content/operate/rc/databases/connect/_index.md +++ b/content/operate/rc/databases/connect/_index.md @@ -21,7 +21,7 @@ If you've turned on [Role-based access control]({{< relref "/operate/rc/security Once you have the username and password, select **Connect** to open the connection wizard. -{{< image filename="/images/rc/connection-wizard-button.png#no-click" alt="Connect button." >}} +{{< image filename="/images/rc/button-connect.png#no-click" alt="Connect button." >}} The connection wizard provides the following database connection methods: diff --git a/content/operate/rc/databases/create-database/create-active-active-database.md b/content/operate/rc/databases/create-database/create-active-active-database.md index f41000cd4e..3e741d54f1 100644 --- a/content/operate/rc/databases/create-database/create-active-active-database.md +++ b/content/operate/rc/databases/create-database/create-active-active-database.md @@ -115,7 +115,7 @@ The **Sizing** tab helps you specify the database, memory, and throughput requir When you first visit the **Sizing** tab, there are no databases defined. Select the **Add** button to create one. -{{Use the Add button to define a new database for your subscription.}} +{{Use the Add button to define a new database for your subscription.}} This opens the **New Active-Active Redis Database** dialog, which lets you define the requirements for your new database. @@ -163,7 +163,7 @@ Use the **Add database** button to define additional databases or select the **C Hover over a database to see the **Edit** and **Delete** icons. You can use the **Edit** icon to change a database or the **Delete** icon to remove a database from the list. -{{Use the Edit button to change database settings.}} {{Use the Delete button to remove a database.}} +{{Use the Edit button to change database settings.}} {{Use the Delete button to remove a database.}} ### Review and Create tab diff --git a/content/operate/rc/databases/create-database/create-essentials-database.md b/content/operate/rc/databases/create-database/create-essentials-database.md index d8864f34dd..586078d5d5 100644 --- a/content/operate/rc/databases/create-database/create-essentials-database.md +++ b/content/operate/rc/databases/create-database/create-essentials-database.md @@ -68,7 +68,7 @@ This guide shows how to create an Essentials database. If you chose a paid plan and haven't previously entered a payment method, use the **Add Credit Card** button to add one. - {{The Add credit card icon.}} + {{The Add credit card icon.}} 1. Select **Create database** or **Confirm & pay** to create your database. diff --git a/content/operate/rc/databases/create-database/create-flex-database.md b/content/operate/rc/databases/create-database/create-flex-database.md index 9a12afcfee..7dfba9ab17 100644 --- a/content/operate/rc/databases/create-database/create-flex-database.md +++ b/content/operate/rc/databases/create-database/create-flex-database.md @@ -102,7 +102,7 @@ This guide shows how to create a Redis Flex database on Redis Cloud Essentials. If you haven't previously entered a payment method, use the **Add Credit Card** button to add one. - {{The Add credit card icon.}} + {{The Add credit card icon.}} 1. Select **Confirm & pay** to create your database. diff --git a/content/operate/rc/databases/create-database/create-pro-database-new.md b/content/operate/rc/databases/create-database/create-pro-database-new.md index dd0c0b64e6..a87506b618 100644 --- a/content/operate/rc/databases/create-database/create-pro-database-new.md +++ b/content/operate/rc/databases/create-database/create-pro-database-new.md @@ -63,7 +63,7 @@ If you choose to create your database with Easy create: If you haven't previously entered a payment method, use the **Add Credit Card** button to add one. - {{The Add credit card icon.}} + {{The Add credit card icon.}} Select **Confirm & pay** to create your database. @@ -147,7 +147,7 @@ The **Sizing** tab helps you specify the database, memory, and throughput requir When you first visit the **Sizing** tab, there are no databases defined. Select the **Add** button to create one. -{{Use the Add button to define a new database for your subscription.}} +{{Use the Add button to define a new database for your subscription.}} This opens the **New Database** dialog, which lets you define the requirements for your new database. @@ -185,7 +185,7 @@ Use the **Add database** button to define additional databases or select the **C Hover over a database to see the **Edit** and **Delete** icons. You can use the **Edit** icon to change a database or the **Delete** icon to remove a database from the list. -{{Use the Edit button to change database settings.}} {{Use the Delete button to remove a database.}} +{{Use the Edit button to change database settings.}} {{Use the Delete button to remove a database.}} ### Review and Create tab diff --git a/content/operate/rc/databases/migrate-databases.md b/content/operate/rc/databases/migrate-databases.md index f30e25eee2..0c009311b1 100644 --- a/content/operate/rc/databases/migrate-databases.md +++ b/content/operate/rc/databases/migrate-databases.md @@ -129,7 +129,7 @@ Follow these detailed steps to migrate data using Active-Passive syncing: The sync process doesn't begin until the database becomes `Active`. - {{When the status becomes 'Active', data begins to sync.}} + {{When the status becomes 'Active', data begins to sync.}} When data has fully migrated to the target database, database status reports `Synced`. diff --git a/content/operate/rc/rc-quickstart.md b/content/operate/rc/rc-quickstart.md index 0cccc47c47..d888fc9143 100644 --- a/content/operate/rc/rc-quickstart.md +++ b/content/operate/rc/rc-quickstart.md @@ -62,7 +62,7 @@ If you would rather customize your database, select **See more plans** to go to 1. In the upper corner, an icon shows the current status of the database. If the icon shows an orange clock, this means your database is still being created and its status is _pending_. - {{< image filename="/images/rc/icon-database-update-status-pending.png#no-click" alt="Pending database status" class="inline" >}} {{< image filename="/images/rc/icon-database-update-status-active.png#no-click" alt="Active database status" class="inline">}} + {{< image filename="/images/rc/icon-database-update-status-pending.png#no-click" alt="Pending database status" class="inline" >}} {{< image filename="/images/rc/icon-database-status-active.png#no-click" alt="Active database status" class="inline">}} Once the database has been created, it becomes _active_ and the status indicator switches to a green circle containing a checkmark. @@ -80,7 +80,7 @@ To connect to your database, you need your username and password. Each database Once you have the username and password, select **Connect** to open the connection wizard. -{{< image filename="/images/rc/connection-wizard-button.png#no-click" alt="Connect button." >}} +{{< image filename="/images/rc/button-connect.png#no-click" alt="Connect button." >}} The connection wizard provides the following database connection methods: diff --git a/content/operate/rc/security/access-control/access-management.md b/content/operate/rc/security/access-control/access-management.md index 0f7d1a15d5..6240aaccc8 100644 --- a/content/operate/rc/security/access-control/access-management.md +++ b/content/operate/rc/security/access-control/access-management.md @@ -32,9 +32,9 @@ The list includes several buttons and icons to help you manage the list: | Icon | Description | |------|-------------| -| {{Use the Add button to add members to your team.}} | The **Add** button lets you add members to your team | -| {{Use the Edit button change details for a team member.}} | The **Edit** button lets you edit the settings for the selected team member | -| {{Use the Delete button to remove a member from your team.}} | The **Delete** button lets you remove members from your team +| {{Use the Add button to add members to your team.}} | The **Add** button lets you add members to your team | +| {{Use the Edit button change details for a team member.}} | The **Edit** button lets you edit the settings for the selected team member | +| {{Use the Delete button to remove a member from your team.}} | The **Delete** button lets you remove members from your team | {{The Sort ascending button displays members in ascending order according to the values of the selected field.}}{{The Sort descending button displays members in descending order according to the values of the selected field.}} | The **Sort ascending** and **Sort descending** icons display the list according to the selected order | You can also use the list search to find a specific user or filter by **Role**, **User Type**, or **Options**. diff --git a/content/operate/rc/security/access-control/data-access-control/default-user.md b/content/operate/rc/security/access-control/data-access-control/default-user.md index ee855735f2..e5c1225e3f 100644 --- a/content/operate/rc/security/access-control/data-access-control/default-user.md +++ b/content/operate/rc/security/access-control/data-access-control/default-user.md @@ -19,7 +19,7 @@ This password appears in the **Security** section of the **Configuration** tab o Use the copy button to copy the password to the clipboard: -{{Use the Copy button to copy the default user password.}} +{{Use the Copy button to copy the default user password.}} You'll need to use this password whenever you connect to your database using a Redis client. See [Connect to a database]({{< relref "/operate/rc/databases/connect" >}}) for more info. diff --git a/content/operate/rc/security/access-control/saml-sso/_index.md b/content/operate/rc/security/access-control/saml-sso/_index.md index 52b86d2422..66a8e95908 100644 --- a/content/operate/rc/security/access-control/saml-sso/_index.md +++ b/content/operate/rc/security/access-control/saml-sso/_index.md @@ -110,7 +110,7 @@ Before you set up SAML SSO in Redis Cloud, you must verify that you own the doma We'll check the domain's DNS records for the provided TXT record. If the TXT record does not exist or we can't resolve your domain, we won't be able to verify the domain and users with that domain won't be able to sign in using SAML SSO. - Select {{delete domain}} to delete a domain if it was added by mistake. + Select {{delete domain}} to delete a domain if it was added by mistake. If we find the TXT record, the domain's status will change to **Verified**. diff --git a/content/operate/rc/security/private-service-connect.md b/content/operate/rc/security/private-service-connect.md index bbea243af9..86794f6a6d 100644 --- a/content/operate/rc/security/private-service-connect.md +++ b/content/operate/rc/security/private-service-connect.md @@ -75,7 +75,7 @@ First, configure Private Service Connect in Redis Cloud: 6. Continue to the **Add connections** step: - {{Use the Continue button to proceed to the Add connections step.}} + {{Use the Continue button to proceed to the Add connections step.}} 7. Select either **Bash Shell** or **PowerShell** and then download or copy the provided `gcloud` script for later: @@ -83,7 +83,7 @@ First, configure Private Service Connect in Redis Cloud: 8. Select **Continue** to save this endpoint configuration: - {{Use the Continue button to save the PSC endpoint configuration.}} + {{Use the Continue button to save the PSC endpoint configuration.}} ### Create endpoints {#create-endpoints} @@ -128,7 +128,7 @@ Once your Private Service Connect endpoint is active, you can connect your appli 1. From your subscription's **Connectivity > Private Service Connect** tab, select the **Connect** button for the active endpoint: - {{Use the Connect button to retrieve PSC connection details.}} + {{Use the Connect button to retrieve PSC connection details.}} 1. Select a database from the list. @@ -151,7 +151,7 @@ To deactivate Private Service Connect for your subscription: 1. Select the **Delete PSC endpoint** button: - {{Use the Delete PSC endpoint button to remove an endpoint.}} + {{Use the Delete PSC endpoint button to remove an endpoint.}} 1. Copy the provided `gcloud` script from the **Remove endpoint** dialog. diff --git a/content/operate/rc/subscriptions/bring-your-own-cloud/cloud-account-settings.md b/content/operate/rc/subscriptions/bring-your-own-cloud/cloud-account-settings.md index 0633dd779d..550bfcd6c0 100644 --- a/content/operate/rc/subscriptions/bring-your-own-cloud/cloud-account-settings.md +++ b/content/operate/rc/subscriptions/bring-your-own-cloud/cloud-account-settings.md @@ -45,7 +45,7 @@ The **Cloud Account** tab is only available for accounts with Redis Cloud Bring To add a new cloud account to your Redis Cloud subscription, select the **Add** button from the Cloud Account tab of the Account Settings screen. -{{Use the Add button to add new cloud accounts to your Redis Cloud subscription.}} +{{Use the Add button to add new cloud accounts to your Redis Cloud subscription.}} This displays the **Add cloud account** dialog. @@ -80,7 +80,7 @@ For help, see [Create IAM resources]({{< relref "/operate/rc/subscriptions/bring To update the details of a cloud account associated with your Redis Cloud subscription, select the cloud account from the **Cloud account** tab and then select the **Edit** button. -{{Use the Edit button to update cloud account details.}} +{{Use the Edit button to update cloud account details.}} This displays the **Edit cloud account** dialog: @@ -101,7 +101,7 @@ Use the **Update account** button to save your changes. To remove a cloud account from your Redis cloud subscription, select the cloud account from the **Cloud account** tab and then select the **Delete** button. -{{Use the Delete button to remove cloud account details.}} +{{Use the Delete button to remove cloud account details.}} ## Dedicated IAM resources diff --git a/content/operate/rc/subscriptions/bring-your-own-cloud/subscription-whitelist.md b/content/operate/rc/subscriptions/bring-your-own-cloud/subscription-whitelist.md index a88107a0a8..b3755a2b28 100644 --- a/content/operate/rc/subscriptions/bring-your-own-cloud/subscription-whitelist.md +++ b/content/operate/rc/subscriptions/bring-your-own-cloud/subscription-whitelist.md @@ -50,7 +50,7 @@ To add IP addresses or [AWS security groups](https://docs.aws.amazon.com/managed 1. Select **Add** to add a new entry. - {{The Add button adds new entries to the allow list.}} + {{The Add button adds new entries to the allow list.}} 1. Select the new entry's **Type**, enter the **Value**, and select the check to add it to the allow list. @@ -58,7 +58,7 @@ To add IP addresses or [AWS security groups](https://docs.aws.amazon.com/managed You can also select the **Edit** button to change an entry or the **Delete** button to remove it. - {{The Edit button updates an entry in the allow list.}} {{The Delete button removes an entry from the allow list.}} + {{The Edit button updates an entry in the allow list.}} {{The Delete button removes an entry from the allow list.}} 1. Select **Apply all changes** to apply the allow list updates. diff --git a/content/operate/rc/subscriptions/maintenance/_index.md b/content/operate/rc/subscriptions/maintenance/_index.md index 24555929a4..b5e916b7ee 100644 --- a/content/operate/rc/subscriptions/maintenance/_index.md +++ b/content/operate/rc/subscriptions/maintenance/_index.md @@ -73,7 +73,7 @@ To receive maintenance notifications by email: 1. Select the Edit button. - {{Use the Edit button change details for a team member.}} + {{Use the Edit button change details for a team member.}} 1. Select **Operational emails** if it is not already turned on. diff --git a/content/operate/rc/subscriptions/upgrade-essentials-pro.md b/content/operate/rc/subscriptions/upgrade-essentials-pro.md index e390529afd..30def7a927 100644 --- a/content/operate/rc/subscriptions/upgrade-essentials-pro.md +++ b/content/operate/rc/subscriptions/upgrade-essentials-pro.md @@ -79,7 +79,7 @@ Before you follow this guide, be aware of the following limitations: The sync process doesn't begin until the database becomes `Active`. - {{When the status becomes 'Active', data begins to sync.}} + {{When the status becomes 'Active', data begins to sync.}} When data has fully migrated to the target database, database status reports `Synced`. diff --git a/static/images/rc/access-control-security.png b/static/images/rc/access-control-security.png deleted file mode 100644 index 9999e78b4e..0000000000 Binary files a/static/images/rc/access-control-security.png and /dev/null differ diff --git a/static/images/rc/access-management-add-user-dialog.png b/static/images/rc/access-management-add-user-dialog.png deleted file mode 100755 index 73df8f12d9..0000000000 Binary files a/static/images/rc/access-management-add-user-dialog.png and /dev/null differ diff --git a/static/images/rc/access-management-edit-user-dialog.png b/static/images/rc/access-management-edit-user-dialog.png deleted file mode 100755 index a5aa63da67..0000000000 Binary files a/static/images/rc/access-management-edit-user-dialog.png and /dev/null differ diff --git a/static/images/rc/access-management-saml-link-accounts.png b/static/images/rc/access-management-saml-link-accounts.png deleted file mode 100644 index 266413df59..0000000000 Binary files a/static/images/rc/access-management-saml-link-accounts.png and /dev/null differ diff --git a/static/images/rc/account-settings-confirm-billing-address.png b/static/images/rc/account-settings-confirm-billing-address.png deleted file mode 100644 index dce4716d09..0000000000 Binary files a/static/images/rc/account-settings-confirm-billing-address.png and /dev/null differ diff --git a/static/images/rc/account-settings-integrations-confluent.png b/static/images/rc/account-settings-integrations-confluent.png index 6a1dcfc993..c949705be6 100644 Binary files a/static/images/rc/account-settings-integrations-confluent.png and b/static/images/rc/account-settings-integrations-confluent.png differ diff --git a/static/images/rc/account-settings-prompt-cloud-account-error.png b/static/images/rc/account-settings-prompt-cloud-account-error.png deleted file mode 100755 index 3ed57cd7da..0000000000 Binary files a/static/images/rc/account-settings-prompt-cloud-account-error.png and /dev/null differ diff --git a/static/images/rc/account_multiple_teams.png b/static/images/rc/account_multiple_teams.png deleted file mode 100644 index 2c91bfdc8f..0000000000 Binary files a/static/images/rc/account_multiple_teams.png and /dev/null differ diff --git a/static/images/rc/account_number.png b/static/images/rc/account_number.png deleted file mode 100644 index 854876f394..0000000000 Binary files a/static/images/rc/account_number.png and /dev/null differ diff --git a/static/images/rc/active-active-memory-calculator.png b/static/images/rc/active-active-memory-calculator.png deleted file mode 100644 index c21f7af64f..0000000000 Binary files a/static/images/rc/active-active-memory-calculator.png and /dev/null differ diff --git a/static/images/rc/after_zone_mapping.png b/static/images/rc/after_zone_mapping.png deleted file mode 100644 index c274a90e5e..0000000000 Binary files a/static/images/rc/after_zone_mapping.png and /dev/null differ diff --git a/static/images/rc/alert_settings.png b/static/images/rc/alert_settings.png deleted file mode 100644 index 8f510c2b7d..0000000000 Binary files a/static/images/rc/alert_settings.png and /dev/null differ diff --git a/static/images/rc/aws-marketplace-billing-confirm.png b/static/images/rc/aws-marketplace-billing-confirm.png deleted file mode 100644 index b4a2f4a152..0000000000 Binary files a/static/images/rc/aws-marketplace-billing-confirm.png and /dev/null differ diff --git a/static/images/rc/aws-marketplace-subscribe-button.png b/static/images/rc/aws-marketplace-subscribe-button.png deleted file mode 100755 index 0c32e34ceb..0000000000 Binary files a/static/images/rc/aws-marketplace-subscribe-button.png and /dev/null differ diff --git a/static/images/rc/billing_history.png b/static/images/rc/billing_history.png deleted file mode 100644 index 79c461979b..0000000000 Binary files a/static/images/rc/billing_history.png and /dev/null differ diff --git a/static/images/rc/bucket-permissions.png b/static/images/rc/bucket-permissions.png deleted file mode 100644 index 0b765027d6..0000000000 Binary files a/static/images/rc/bucket-permissions.png and /dev/null differ diff --git a/static/images/rc/build-a-plan.png b/static/images/rc/build-a-plan.png deleted file mode 100644 index e780394860..0000000000 Binary files a/static/images/rc/build-a-plan.png and /dev/null differ diff --git a/static/images/rc/button-access-management-add-user.png b/static/images/rc/button-access-management-add-user.png deleted file mode 100755 index 5bdfcbaa7b..0000000000 Binary files a/static/images/rc/button-access-management-add-user.png and /dev/null differ diff --git a/static/images/rc/button-access-management-add.png b/static/images/rc/button-access-management-add.png deleted file mode 100644 index 0bd29ef8b6..0000000000 Binary files a/static/images/rc/button-access-management-add.png and /dev/null differ diff --git a/static/images/rc/button-access-management-api-user-key-delete.png b/static/images/rc/button-access-management-api-user-key-delete.png deleted file mode 100644 index 9d8f3cce02..0000000000 Binary files a/static/images/rc/button-access-management-api-user-key-delete.png and /dev/null differ diff --git a/static/images/rc/button-access-management-api-user-key-finish.png b/static/images/rc/button-access-management-api-user-key-finish.png deleted file mode 100755 index 6063758457..0000000000 Binary files a/static/images/rc/button-access-management-api-user-key-finish.png and /dev/null differ diff --git a/static/images/rc/button-access-management-cidr-rule-delete.png b/static/images/rc/button-access-management-cidr-rule-delete.png deleted file mode 100644 index 1d0b9c53c8..0000000000 Binary files a/static/images/rc/button-access-management-cidr-rule-delete.png and /dev/null differ diff --git a/static/images/rc/button-access-management-cidr-rule-edit.png b/static/images/rc/button-access-management-cidr-rule-edit.png deleted file mode 100644 index 5d8909b589..0000000000 Binary files a/static/images/rc/button-access-management-cidr-rule-edit.png and /dev/null differ diff --git a/static/images/rc/button-access-management-delete-user.png b/static/images/rc/button-access-management-delete-user.png deleted file mode 100755 index e2f8dd2602..0000000000 Binary files a/static/images/rc/button-access-management-delete-user.png and /dev/null differ diff --git a/static/images/rc/button-access-management-sso-deactivate-saml-deactivate.png b/static/images/rc/button-access-management-sso-deactivate-saml-deactivate.png deleted file mode 100644 index 0bf4bbaa86..0000000000 Binary files a/static/images/rc/button-access-management-sso-deactivate-saml-deactivate.png and /dev/null differ diff --git a/static/images/rc/button-access-management-user-key-cancel.png b/static/images/rc/button-access-management-user-key-cancel.png deleted file mode 100755 index 5fa53d5943..0000000000 Binary files a/static/images/rc/button-access-management-user-key-cancel.png and /dev/null differ diff --git a/static/images/rc/button-both-delete.png b/static/images/rc/button-both-delete.png deleted file mode 100644 index a9ad824a1d..0000000000 Binary files a/static/images/rc/button-both-delete.png and /dev/null differ diff --git a/static/images/rc/connection-wizard-button.png b/static/images/rc/button-connect.png similarity index 100% rename from static/images/rc/connection-wizard-button.png rename to static/images/rc/button-connect.png diff --git a/static/images/rc/button-access-management-api-key-copy.png b/static/images/rc/button-copy.png similarity index 100% rename from static/images/rc/button-access-management-api-key-copy.png rename to static/images/rc/button-copy.png diff --git a/static/images/rc/button-data-access-control-redis-acls-rule-builder-add.png b/static/images/rc/button-data-access-control-redis-acls-rule-builder-add.png deleted file mode 100644 index 284f5813c7..0000000000 Binary files a/static/images/rc/button-data-access-control-redis-acls-rule-builder-add.png and /dev/null differ diff --git a/static/images/rc/button-data-access-control-redis-acls-rule-builder-save-rule.png b/static/images/rc/button-data-access-control-redis-acls-rule-builder-save-rule.png deleted file mode 100644 index 09414c97d2..0000000000 Binary files a/static/images/rc/button-data-access-control-redis-acls-rule-builder-save-rule.png and /dev/null differ diff --git a/static/images/rc/button-data-access-control-save-role.png b/static/images/rc/button-data-access-control-save-role.png deleted file mode 100644 index eb473ef14a..0000000000 Binary files a/static/images/rc/button-data-access-control-save-role.png and /dev/null differ diff --git a/static/images/rc/button-database-add-account-path.png b/static/images/rc/button-database-add-account-path.png deleted file mode 100644 index 5d7ed2194b..0000000000 Binary files a/static/images/rc/button-database-add-account-path.png and /dev/null differ diff --git a/static/images/rc/button-database-config-security-add-cidr.png b/static/images/rc/button-database-config-security-add-cidr.png deleted file mode 100644 index 264e204f98..0000000000 Binary files a/static/images/rc/button-database-config-security-add-cidr.png and /dev/null differ diff --git a/static/images/rc/button-database-copy.png b/static/images/rc/button-database-copy.png deleted file mode 100755 index 2040a2c493..0000000000 Binary files a/static/images/rc/button-database-copy.png and /dev/null differ diff --git a/static/images/rc/button-database-keep.png b/static/images/rc/button-database-keep.png deleted file mode 100755 index 875cf0ad30..0000000000 Binary files a/static/images/rc/button-database-keep.png and /dev/null differ diff --git a/static/images/rc/button-database-password-copy.png b/static/images/rc/button-database-password-copy.png deleted file mode 100644 index b34c9ec0ad..0000000000 Binary files a/static/images/rc/button-database-password-copy.png and /dev/null differ diff --git a/static/images/rc/button-subscription-add.png b/static/images/rc/button-subscription-add.png deleted file mode 100755 index 2f5eb28772..0000000000 Binary files a/static/images/rc/button-subscription-add.png and /dev/null differ diff --git a/static/images/rc/button-subscription-cancel.png b/static/images/rc/button-subscription-cancel.png deleted file mode 100644 index 71ea6d3d2b..0000000000 Binary files a/static/images/rc/button-subscription-cancel.png and /dev/null differ diff --git a/static/images/rc/button-subscription-change-plan.png b/static/images/rc/button-subscription-change-plan.png deleted file mode 100755 index 0c6bac2d48..0000000000 Binary files a/static/images/rc/button-subscription-change-plan.png and /dev/null differ diff --git a/static/images/rc/button-subscription-connectivity-add-allow-list.png b/static/images/rc/button-subscription-connectivity-add-allow-list.png deleted file mode 100644 index fc6eded097..0000000000 Binary files a/static/images/rc/button-subscription-connectivity-add-allow-list.png and /dev/null differ diff --git a/static/images/rc/button-subscription-connectivity-allow-list-apply-all-changes.png b/static/images/rc/button-subscription-connectivity-allow-list-apply-all-changes.png deleted file mode 100644 index 81ca49abd7..0000000000 Binary files a/static/images/rc/button-subscription-connectivity-allow-list-apply-all-changes.png and /dev/null differ diff --git a/static/images/rc/button-subscription-connectivity-psc-connect.png b/static/images/rc/button-subscription-connectivity-psc-connect.png deleted file mode 100644 index e373688e42..0000000000 Binary files a/static/images/rc/button-subscription-connectivity-psc-connect.png and /dev/null differ diff --git a/static/images/rc/button-subscription-connectivity-psc-continue.png b/static/images/rc/button-subscription-connectivity-psc-continue.png deleted file mode 100644 index 816e19a4f1..0000000000 Binary files a/static/images/rc/button-subscription-connectivity-psc-continue.png and /dev/null differ diff --git a/static/images/rc/button-subscription-connectivity-vpc-peering-add-cidr.png b/static/images/rc/button-subscription-connectivity-vpc-peering-add-cidr.png deleted file mode 100644 index 47cc99ff77..0000000000 Binary files a/static/images/rc/button-subscription-connectivity-vpc-peering-add-cidr.png and /dev/null differ diff --git a/static/images/rc/button-subscription-connectivity-vpc-peering-add-peering.png b/static/images/rc/button-subscription-connectivity-vpc-peering-add-peering.png deleted file mode 100644 index 1d203d531a..0000000000 Binary files a/static/images/rc/button-subscription-connectivity-vpc-peering-add-peering.png and /dev/null differ diff --git a/static/images/rc/button-subscription-connectivity-vpc-peering-initiate-peering.png b/static/images/rc/button-subscription-connectivity-vpc-peering-initiate-peering.png deleted file mode 100644 index 78fa21544f..0000000000 Binary files a/static/images/rc/button-subscription-connectivity-vpc-peering-initiate-peering.png and /dev/null differ diff --git a/static/images/rc/button-subscription-continue.png b/static/images/rc/button-subscription-continue.png index 93326c2740..816e19a4f1 100644 Binary files a/static/images/rc/button-subscription-continue.png and b/static/images/rc/button-subscription-continue.png differ diff --git a/static/images/rc/cancel-update.png b/static/images/rc/cancel-update.png deleted file mode 100644 index 8c1971dde4..0000000000 Binary files a/static/images/rc/cancel-update.png and /dev/null differ diff --git a/static/images/rc/cidr-whitelist.png b/static/images/rc/cidr-whitelist.png deleted file mode 100644 index 5b3d5b571d..0000000000 Binary files a/static/images/rc/cidr-whitelist.png and /dev/null differ diff --git a/static/images/rc/create-custom-subscription.png b/static/images/rc/create-custom-subscription.png deleted file mode 100644 index 6ff6302ea5..0000000000 Binary files a/static/images/rc/create-custom-subscription.png and /dev/null differ diff --git a/static/images/rc/create-database-flex-cloud-vendor.png b/static/images/rc/create-database-flex-cloud-vendor.png deleted file mode 100644 index 7e78b9dd64..0000000000 Binary files a/static/images/rc/create-database-flex-cloud-vendor.png and /dev/null differ diff --git a/static/images/rc/create-flexible-sub-active-active-off.png b/static/images/rc/create-flexible-sub-active-active-off.png deleted file mode 100755 index 7714d3de28..0000000000 Binary files a/static/images/rc/create-flexible-sub-active-active-off.png and /dev/null differ diff --git a/static/images/rc/data-access-control.png b/static/images/rc/data-access-control.png deleted file mode 100644 index ae3b69951a..0000000000 Binary files a/static/images/rc/data-access-control.png and /dev/null differ diff --git a/static/images/rc/database-configuration-tab-flexible.png b/static/images/rc/database-configuration-tab-flexible.png deleted file mode 100644 index 5d38e64f2b..0000000000 Binary files a/static/images/rc/database-configuration-tab-flexible.png and /dev/null differ diff --git a/static/images/rc/database-create-alerts-flexible.png b/static/images/rc/database-create-alerts-flexible.png deleted file mode 100755 index 37cba5f385..0000000000 Binary files a/static/images/rc/database-create-alerts-flexible.png and /dev/null differ diff --git a/static/images/rc/database-create-durability-flexible.png b/static/images/rc/database-create-durability-flexible.png deleted file mode 100755 index 5a2a063e32..0000000000 Binary files a/static/images/rc/database-create-durability-flexible.png and /dev/null differ diff --git a/static/images/rc/database-create-general-flexible.png b/static/images/rc/database-create-general-flexible.png deleted file mode 100755 index f6bc187845..0000000000 Binary files a/static/images/rc/database-create-general-flexible.png and /dev/null differ diff --git a/static/images/rc/database-create-scalability-flexible.png b/static/images/rc/database-create-scalability-flexible.png deleted file mode 100755 index 3a96868c74..0000000000 Binary files a/static/images/rc/database-create-scalability-flexible.png and /dev/null differ diff --git a/static/images/rc/database-create-security-flexible.png b/static/images/rc/database-create-security-flexible.png deleted file mode 100755 index d3d5b5d07e..0000000000 Binary files a/static/images/rc/database-create-security-flexible.png and /dev/null differ diff --git a/static/images/rc/database-delete-confirm-dialog.png b/static/images/rc/database-delete-confirm-dialog.png deleted file mode 100755 index bda034f0ef..0000000000 Binary files a/static/images/rc/database-delete-confirm-dialog.png and /dev/null differ diff --git a/static/images/rc/database-details-configuration-tab-general-free.png b/static/images/rc/database-details-configuration-tab-general-free.png deleted file mode 100755 index aa644ffa5a..0000000000 Binary files a/static/images/rc/database-details-configuration-tab-general-free.png and /dev/null differ diff --git a/static/images/rc/database-details-configuration-tab-security-cidr-allowlist-toggle.png b/static/images/rc/database-details-configuration-tab-security-cidr-allowlist-toggle.png deleted file mode 100644 index 856c7f325e..0000000000 Binary files a/static/images/rc/database-details-configuration-tab-security-cidr-allowlist-toggle.png and /dev/null differ diff --git a/static/images/rc/database-fixed-configuration-general-update.png b/static/images/rc/database-fixed-configuration-general-update.png deleted file mode 100644 index 068961a5c9..0000000000 Binary files a/static/images/rc/database-fixed-configuration-general-update.png and /dev/null differ diff --git a/static/images/rc/database-fixed-configuration-general.png b/static/images/rc/database-fixed-configuration-general.png deleted file mode 100644 index 38f143680e..0000000000 Binary files a/static/images/rc/database-fixed-configuration-general.png and /dev/null differ diff --git a/static/images/rc/database-import-dialog.png b/static/images/rc/database-import-dialog.png deleted file mode 100755 index 0fa7afd6a7..0000000000 Binary files a/static/images/rc/database-import-dialog.png and /dev/null differ diff --git a/static/images/rc/database-list-select.png b/static/images/rc/database-list-select.png deleted file mode 100755 index 3c84ea58c1..0000000000 Binary files a/static/images/rc/database-list-select.png and /dev/null differ diff --git a/static/images/rc/database-new-free-name.png b/static/images/rc/database-new-free-name.png deleted file mode 100755 index 050f7f356e..0000000000 Binary files a/static/images/rc/database-new-free-name.png and /dev/null differ diff --git a/static/images/rc/database-public-endpoint-copy.png b/static/images/rc/database-public-endpoint-copy.png deleted file mode 100644 index 37e52fc933..0000000000 Binary files a/static/images/rc/database-public-endpoint-copy.png and /dev/null differ diff --git a/static/images/rc/database-view-configuration.png b/static/images/rc/database-view-configuration.png deleted file mode 100755 index e45e6d2afd..0000000000 Binary files a/static/images/rc/database-view-configuration.png and /dev/null differ diff --git a/static/images/rc/database-view-metrics.png b/static/images/rc/database-view-metrics.png deleted file mode 100755 index 50c17a57a7..0000000000 Binary files a/static/images/rc/database-view-metrics.png and /dev/null differ diff --git a/static/images/rc/databases_main.png b/static/images/rc/databases_main.png deleted file mode 100644 index 42bd8139a1..0000000000 Binary files a/static/images/rc/databases_main.png and /dev/null differ diff --git a/static/images/rc/default-user-password-reveal.png b/static/images/rc/default-user-password-reveal.png deleted file mode 100644 index 77590cd7b6..0000000000 Binary files a/static/images/rc/default-user-password-reveal.png and /dev/null differ diff --git a/static/images/rc/default-user-password.png b/static/images/rc/default-user-password.png deleted file mode 100644 index d62e77e3eb..0000000000 Binary files a/static/images/rc/default-user-password.png and /dev/null differ diff --git a/static/images/rc/edit-db.png b/static/images/rc/edit-db.png deleted file mode 100644 index 8c75abc37b..0000000000 Binary files a/static/images/rc/edit-db.png and /dev/null differ diff --git a/static/images/rc/edit-password.png b/static/images/rc/edit-password.png deleted file mode 100644 index 549834be4b..0000000000 Binary files a/static/images/rc/edit-password.png and /dev/null differ diff --git a/static/images/rc/enforce-client-auth.png b/static/images/rc/enforce-client-auth.png deleted file mode 100644 index d01c44e4cf..0000000000 Binary files a/static/images/rc/enforce-client-auth.png and /dev/null differ diff --git a/static/images/rc/essentials-74-preview.png b/static/images/rc/essentials-74-preview.png deleted file mode 100644 index 40ea4be195..0000000000 Binary files a/static/images/rc/essentials-74-preview.png and /dev/null differ diff --git a/static/images/rc/existing-vpc-networking.png b/static/images/rc/existing-vpc-networking.png deleted file mode 100644 index 6aa8559afa..0000000000 Binary files a/static/images/rc/existing-vpc-networking.png and /dev/null differ diff --git a/static/images/rc/fixed-sub-add-credit-card.png b/static/images/rc/fixed-sub-add-credit-card.png deleted file mode 100644 index 34c240989b..0000000000 Binary files a/static/images/rc/fixed-sub-add-credit-card.png and /dev/null differ diff --git a/static/images/rc/fixed-sub-create-database-free.png b/static/images/rc/fixed-sub-create-database-free.png deleted file mode 100644 index 5cd43452dc..0000000000 Binary files a/static/images/rc/fixed-sub-create-database-free.png and /dev/null differ diff --git a/static/images/rc/fixed-sub-create-database-paid.png b/static/images/rc/fixed-sub-create-database-paid.png deleted file mode 100644 index 56207d5901..0000000000 Binary files a/static/images/rc/fixed-sub-create-database-paid.png and /dev/null differ diff --git a/static/images/rc/fixed-subscription-create.png b/static/images/rc/fixed-subscription-create.png deleted file mode 100644 index 6bd13ce007..0000000000 Binary files a/static/images/rc/fixed-subscription-create.png and /dev/null differ diff --git a/static/images/rc/fixed-subscription-free-tier.png b/static/images/rc/fixed-subscription-free-tier.png deleted file mode 100644 index 2aa87699c2..0000000000 Binary files a/static/images/rc/fixed-subscription-free-tier.png and /dev/null differ diff --git a/static/images/rc/fixed-subscription-paid-tier.png b/static/images/rc/fixed-subscription-paid-tier.png deleted file mode 100644 index 43707fde01..0000000000 Binary files a/static/images/rc/fixed-subscription-paid-tier.png and /dev/null differ diff --git a/static/images/rc/flexible-create-review.png b/static/images/rc/flexible-create-review.png deleted file mode 100644 index 7e860eb412..0000000000 Binary files a/static/images/rc/flexible-create-review.png and /dev/null differ diff --git a/static/images/rc/flexible-create-setup.png b/static/images/rc/flexible-create-setup.png deleted file mode 100644 index 329e69df59..0000000000 Binary files a/static/images/rc/flexible-create-setup.png and /dev/null differ diff --git a/static/images/rc/flexible-create-sizing-first.png b/static/images/rc/flexible-create-sizing-first.png deleted file mode 100644 index c678b6d964..0000000000 Binary files a/static/images/rc/flexible-create-sizing-first.png and /dev/null differ diff --git a/static/images/rc/flexible-create-sizing-list.png b/static/images/rc/flexible-create-sizing-list.png deleted file mode 100644 index fa44cbd2a3..0000000000 Binary files a/static/images/rc/flexible-create-sizing-list.png and /dev/null differ diff --git a/static/images/rc/gcp-marketplace-rc-payg-pending-approval.png b/static/images/rc/gcp-marketplace-rc-payg-pending-approval.png deleted file mode 100644 index f280a3902b..0000000000 Binary files a/static/images/rc/gcp-marketplace-rc-payg-pending-approval.png and /dev/null differ diff --git a/static/images/rc/gcp-nav-pin-redis-enterprise.png b/static/images/rc/gcp-nav-pin-redis-enterprise.png deleted file mode 100755 index 93758aebb4..0000000000 Binary files a/static/images/rc/gcp-nav-pin-redis-enterprise.png and /dev/null differ diff --git a/static/images/rc/gcs-permissions.jpg b/static/images/rc/gcs-permissions.jpg deleted file mode 100644 index 80544218f9..0000000000 Binary files a/static/images/rc/gcs-permissions.jpg and /dev/null differ diff --git a/static/images/rc/icon-access-management-delete-user.png b/static/images/rc/icon-access-management-delete-user.png deleted file mode 100644 index 955950992e..0000000000 Binary files a/static/images/rc/icon-access-management-delete-user.png and /dev/null differ diff --git a/static/images/rc/icon-access-management-edit-user.png b/static/images/rc/icon-access-management-edit-user.png deleted file mode 100644 index 59a3c1e38e..0000000000 Binary files a/static/images/rc/icon-access-management-edit-user.png and /dev/null differ diff --git a/static/images/rc/icon-active.png b/static/images/rc/icon-active.png deleted file mode 100755 index 9609493c4e..0000000000 Binary files a/static/images/rc/icon-active.png and /dev/null differ diff --git a/static/images/rc/icon-add-credit-card.png b/static/images/rc/icon-add-credit-card.png deleted file mode 100644 index c52bbdffcc..0000000000 Binary files a/static/images/rc/icon-add-credit-card.png and /dev/null differ diff --git a/static/images/rc/icon-add-database.png b/static/images/rc/icon-add-database.png deleted file mode 100644 index 191ea96dde..0000000000 Binary files a/static/images/rc/icon-add-database.png and /dev/null differ diff --git a/static/images/rc/icon-cloud-account-add.png b/static/images/rc/icon-add.png similarity index 100% rename from static/images/rc/icon-cloud-account-add.png rename to static/images/rc/icon-add.png diff --git a/static/images/rc/icon-allow-list-add-entry.png b/static/images/rc/icon-allow-list-add-entry.png deleted file mode 100644 index dcc183c919..0000000000 Binary files a/static/images/rc/icon-allow-list-add-entry.png and /dev/null differ diff --git a/static/images/rc/icon-billing-add-credit-card.png b/static/images/rc/icon-billing-add-credit-card.png deleted file mode 100755 index fc70f73a2c..0000000000 Binary files a/static/images/rc/icon-billing-add-credit-card.png and /dev/null differ diff --git a/static/images/rc/icon-check-mark.png b/static/images/rc/icon-check-mark.png deleted file mode 100644 index 5fdd4bc73d..0000000000 Binary files a/static/images/rc/icon-check-mark.png and /dev/null differ diff --git a/static/images/rc/icon-checkbox-clear.png b/static/images/rc/icon-checkbox-clear.png deleted file mode 100755 index 4ccce062cd..0000000000 Binary files a/static/images/rc/icon-checkbox-clear.png and /dev/null differ diff --git a/static/images/rc/icon-cidr-address-error.png b/static/images/rc/icon-cidr-address-error.png index e33cdd6695..4616d27cb6 100644 Binary files a/static/images/rc/icon-cidr-address-error.png and b/static/images/rc/icon-cidr-address-error.png differ diff --git a/static/images/rc/icon-cidr-address-ok.png b/static/images/rc/icon-cidr-address-ok.png index 4616d27cb6..e33cdd6695 100644 Binary files a/static/images/rc/icon-cidr-address-ok.png and b/static/images/rc/icon-cidr-address-ok.png differ diff --git a/static/images/rc/icon-cloud-account-edit.png b/static/images/rc/icon-cloud-account-edit.png deleted file mode 100644 index 008a9a362c..0000000000 Binary files a/static/images/rc/icon-cloud-account-edit.png and /dev/null differ diff --git a/static/images/rc/icon-database-cancel.png b/static/images/rc/icon-database-cancel.png deleted file mode 100755 index d022530249..0000000000 Binary files a/static/images/rc/icon-database-cancel.png and /dev/null differ diff --git a/static/images/rc/icon-database-delete.png b/static/images/rc/icon-database-delete.png deleted file mode 100644 index d3c0c2bab3..0000000000 Binary files a/static/images/rc/icon-database-delete.png and /dev/null differ diff --git a/static/images/rc/icon-database-edit.png b/static/images/rc/icon-database-edit.png deleted file mode 100644 index 62b3d42c5a..0000000000 Binary files a/static/images/rc/icon-database-edit.png and /dev/null differ diff --git a/static/images/rc/icon-database-list-filter-active.png b/static/images/rc/icon-database-list-filter-active.png deleted file mode 100755 index 44f6f22f0a..0000000000 Binary files a/static/images/rc/icon-database-list-filter-active.png and /dev/null differ diff --git a/static/images/rc/icon-database-list-filter-normal.png b/static/images/rc/icon-database-list-filter-normal.png deleted file mode 100755 index 7f7b267767..0000000000 Binary files a/static/images/rc/icon-database-list-filter-normal.png and /dev/null differ diff --git a/static/images/rc/icon-database-list-sort-ascending.png b/static/images/rc/icon-database-list-sort-ascending.png deleted file mode 100755 index c41171ff76..0000000000 Binary files a/static/images/rc/icon-database-list-sort-ascending.png and /dev/null differ diff --git a/static/images/rc/icon-database-list-sort-descending.png b/static/images/rc/icon-database-list-sort-descending.png deleted file mode 100755 index 80a4ad5233..0000000000 Binary files a/static/images/rc/icon-database-list-sort-descending.png and /dev/null differ diff --git a/static/images/rc/icon-database-save.png b/static/images/rc/icon-database-save.png deleted file mode 100755 index 7fbe5fb7ab..0000000000 Binary files a/static/images/rc/icon-database-save.png and /dev/null differ diff --git a/static/images/rc/icon-database-status-active.png b/static/images/rc/icon-database-status-active.png index ce548e6149..62e6b780d4 100644 Binary files a/static/images/rc/icon-database-status-active.png and b/static/images/rc/icon-database-status-active.png differ diff --git a/static/images/rc/icon-database-status-pending.png b/static/images/rc/icon-database-status-pending.png deleted file mode 100755 index 5c83c4dd32..0000000000 Binary files a/static/images/rc/icon-database-status-pending.png and /dev/null differ diff --git a/static/images/rc/icon-database-update-status-active.png b/static/images/rc/icon-database-update-status-active.png deleted file mode 100644 index 62e6b780d4..0000000000 Binary files a/static/images/rc/icon-database-update-status-active.png and /dev/null differ diff --git a/static/images/rc/icon-delete-blue-box.png b/static/images/rc/icon-delete-blue-box.png deleted file mode 100755 index 399e59175f..0000000000 Binary files a/static/images/rc/icon-delete-blue-box.png and /dev/null differ diff --git a/static/images/rc/icon-cloud-account-delete.png b/static/images/rc/icon-delete-teal.png similarity index 100% rename from static/images/rc/icon-cloud-account-delete.png rename to static/images/rc/icon-delete-teal.png diff --git a/static/images/rc/icon-edit.png b/static/images/rc/icon-edit.png old mode 100755 new mode 100644 index 45d448b757..008a9a362c Binary files a/static/images/rc/icon-edit.png and b/static/images/rc/icon-edit.png differ diff --git a/static/images/rc/icon-import.png b/static/images/rc/icon-import.png deleted file mode 100755 index f845eb69e3..0000000000 Binary files a/static/images/rc/icon-import.png and /dev/null differ diff --git a/static/images/rc/icon-list-filter.png b/static/images/rc/icon-list-filter.png deleted file mode 100755 index f98a98fb19..0000000000 Binary files a/static/images/rc/icon-list-filter.png and /dev/null differ diff --git a/static/images/rc/icon-module-delete.png b/static/images/rc/icon-module-delete.png deleted file mode 100755 index 0ce2ef2d55..0000000000 Binary files a/static/images/rc/icon-module-delete.png and /dev/null differ diff --git a/static/images/rc/icon-pending.png b/static/images/rc/icon-pending.png deleted file mode 100755 index 35c00dfdd6..0000000000 Binary files a/static/images/rc/icon-pending.png and /dev/null differ diff --git a/static/images/rc/icon-psc-delete-endpoint.png b/static/images/rc/icon-psc-delete-endpoint.png deleted file mode 100644 index df0c33a391..0000000000 Binary files a/static/images/rc/icon-psc-delete-endpoint.png and /dev/null differ diff --git a/static/images/rc/icon-rbac-add.png b/static/images/rc/icon-rbac-add.png deleted file mode 100644 index fb0400d6a5..0000000000 Binary files a/static/images/rc/icon-rbac-add.png and /dev/null differ diff --git a/static/images/rc/icon-rbac-edit.png b/static/images/rc/icon-rbac-edit.png deleted file mode 100644 index b1ccafb5ea..0000000000 Binary files a/static/images/rc/icon-rbac-edit.png and /dev/null differ diff --git a/static/images/rc/icon-refresh.png b/static/images/rc/icon-refresh.png deleted file mode 100755 index 7ae370db1f..0000000000 Binary files a/static/images/rc/icon-refresh.png and /dev/null differ diff --git a/static/images/rc/icon-subscription-add-button.png b/static/images/rc/icon-subscription-add-button.png deleted file mode 100644 index 23417a4591..0000000000 Binary files a/static/images/rc/icon-subscription-add-button.png and /dev/null differ diff --git a/static/images/rc/icon-sync-data.png b/static/images/rc/icon-sync-data.png deleted file mode 100755 index f888d95f1a..0000000000 Binary files a/static/images/rc/icon-sync-data.png and /dev/null differ diff --git a/static/images/rc/icon_add.png b/static/images/rc/icon_add.png deleted file mode 100644 index 529144e368..0000000000 Binary files a/static/images/rc/icon_add.png and /dev/null differ diff --git a/static/images/rc/icon_delete.png b/static/images/rc/icon_delete.png deleted file mode 100644 index e9e167fe3e..0000000000 Binary files a/static/images/rc/icon_delete.png and /dev/null differ diff --git a/static/images/rc/icon_edit.png b/static/images/rc/icon_edit.png deleted file mode 100644 index 6fb1f2bf11..0000000000 Binary files a/static/images/rc/icon_edit.png and /dev/null differ diff --git a/static/images/rc/icon_import.png b/static/images/rc/icon_import.png deleted file mode 100644 index b3b3cf2582..0000000000 Binary files a/static/images/rc/icon_import.png and /dev/null differ diff --git a/static/images/rc/icon_save.png b/static/images/rc/icon_save.png deleted file mode 100644 index c487a9c997..0000000000 Binary files a/static/images/rc/icon_save.png and /dev/null differ diff --git a/static/images/rc/icon_view.png b/static/images/rc/icon_view.png deleted file mode 100644 index a77aca6be9..0000000000 Binary files a/static/images/rc/icon_view.png and /dev/null differ diff --git a/static/images/rc/ip-subnet-restrictions.png b/static/images/rc/ip-subnet-restrictions.png deleted file mode 100644 index 86c9fda214..0000000000 Binary files a/static/images/rc/ip-subnet-restrictions.png and /dev/null differ diff --git a/static/images/rc/migrate-data-select-target-list.png b/static/images/rc/migrate-data-select-target-list.png deleted file mode 100755 index b7b90d28fc..0000000000 Binary files a/static/images/rc/migrate-data-select-target-list.png and /dev/null differ diff --git a/static/images/rc/migrate-database-source-endpoint.png b/static/images/rc/migrate-database-source-endpoint.png deleted file mode 100755 index dc7042e5be..0000000000 Binary files a/static/images/rc/migrate-database-source-endpoint.png and /dev/null differ diff --git a/static/images/rc/new-cloud-database-modules.png b/static/images/rc/new-cloud-database-modules.png deleted file mode 100644 index fc58c77b76..0000000000 Binary files a/static/images/rc/new-cloud-database-modules.png and /dev/null differ diff --git a/static/images/rc/new-database-free-name.png b/static/images/rc/new-database-free-name.png deleted file mode 100644 index 838163bb01..0000000000 Binary files a/static/images/rc/new-database-free-name.png and /dev/null differ diff --git a/static/images/rc/new-database-general-free-stack.png b/static/images/rc/new-database-general-free-stack.png deleted file mode 100755 index 686926e403..0000000000 Binary files a/static/images/rc/new-database-general-free-stack.png and /dev/null differ diff --git a/static/images/rc/new-free-cloud-subscription.png b/static/images/rc/new-free-cloud-subscription.png deleted file mode 100644 index 64a5e83377..0000000000 Binary files a/static/images/rc/new-free-cloud-subscription.png and /dev/null differ diff --git a/static/images/rc/new-subscription-plans-flexible.png b/static/images/rc/new-subscription-plans-flexible.png deleted file mode 100644 index e5f7bb8639..0000000000 Binary files a/static/images/rc/new-subscription-plans-flexible.png and /dev/null differ diff --git a/static/images/rc/new-subscription.png b/static/images/rc/new-subscription.png deleted file mode 100644 index 63c2cf3bac..0000000000 Binary files a/static/images/rc/new-subscription.png and /dev/null differ diff --git a/static/images/rc/payment_methods.png b/static/images/rc/payment_methods.png deleted file mode 100644 index 72ed7e3a79..0000000000 Binary files a/static/images/rc/payment_methods.png and /dev/null differ diff --git a/static/images/rc/persistent-storage-encryption.png b/static/images/rc/persistent-storage-encryption.png deleted file mode 100644 index fe52e4b375..0000000000 Binary files a/static/images/rc/persistent-storage-encryption.png and /dev/null differ diff --git a/static/images/rc/pro-ca.png b/static/images/rc/pro-ca.png deleted file mode 100644 index 06c3a1b106..0000000000 Binary files a/static/images/rc/pro-ca.png and /dev/null differ diff --git a/static/images/rc/pro-easy-create-edit-icon.png b/static/images/rc/pro-easy-create-edit-icon.png deleted file mode 100644 index 71b00eef6f..0000000000 Binary files a/static/images/rc/pro-easy-create-edit-icon.png and /dev/null differ diff --git a/static/images/rc/pro-easy-create-payment.png b/static/images/rc/pro-easy-create-payment.png deleted file mode 100644 index 7f404bd254..0000000000 Binary files a/static/images/rc/pro-easy-create-payment.png and /dev/null differ diff --git a/static/images/rc/quickstart-create-free-database.png b/static/images/rc/quickstart-create-free-database.png deleted file mode 100644 index d762cf49fd..0000000000 Binary files a/static/images/rc/quickstart-create-free-database.png and /dev/null differ diff --git a/static/images/rc/quickstart-database-list.png b/static/images/rc/quickstart-database-list.png deleted file mode 100644 index 886c63a00f..0000000000 Binary files a/static/images/rc/quickstart-database-list.png and /dev/null differ diff --git a/static/images/rc/quickstart-get-started.png b/static/images/rc/quickstart-get-started.png deleted file mode 100644 index ca04f72947..0000000000 Binary files a/static/images/rc/quickstart-get-started.png and /dev/null differ diff --git a/static/images/rc/quickstart-quick-dialog.png b/static/images/rc/quickstart-quick-dialog.png deleted file mode 100644 index 353cc6b1d9..0000000000 Binary files a/static/images/rc/quickstart-quick-dialog.png and /dev/null differ diff --git a/static/images/rc/quickstart-subscription-overview.png b/static/images/rc/quickstart-subscription-overview.png deleted file mode 100644 index 7572965adb..0000000000 Binary files a/static/images/rc/quickstart-subscription-overview.png and /dev/null differ diff --git a/static/images/rc/rc-settings-ca-fixed.png b/static/images/rc/rc-settings-ca-fixed.png deleted file mode 100755 index 68d136fe91..0000000000 Binary files a/static/images/rc/rc-settings-ca-fixed.png and /dev/null differ diff --git a/static/images/rc/rc-settings-ca-flexible.png b/static/images/rc/rc-settings-ca-flexible.png deleted file mode 100755 index 66587e9cbf..0000000000 Binary files a/static/images/rc/rc-settings-ca-flexible.png and /dev/null differ diff --git a/static/images/rc/redis-acls.png b/static/images/rc/redis-acls.png deleted file mode 100644 index c2526e95f0..0000000000 Binary files a/static/images/rc/redis-acls.png and /dev/null differ diff --git a/static/images/rc/redis-version-compliance.png b/static/images/rc/redis-version-compliance.png deleted file mode 100644 index 53386c80a7..0000000000 Binary files a/static/images/rc/redis-version-compliance.png and /dev/null differ diff --git a/static/images/rc/review_create.png b/static/images/rc/review_create.png deleted file mode 100644 index 57463f7312..0000000000 Binary files a/static/images/rc/review_create.png and /dev/null differ diff --git a/static/images/rc/saml-button-delete-domain.png b/static/images/rc/saml-button-delete-domain.png deleted file mode 100644 index cc75975afa..0000000000 Binary files a/static/images/rc/saml-button-delete-domain.png and /dev/null differ diff --git a/static/images/rc/saml-button-manage-domains.png b/static/images/rc/saml-button-manage-domains.png deleted file mode 100644 index 164208629a..0000000000 Binary files a/static/images/rc/saml-button-manage-domains.png and /dev/null differ diff --git a/static/images/rc/saml-domain-verified.png b/static/images/rc/saml-domain-verified.png deleted file mode 100644 index 646d9118f9..0000000000 Binary files a/static/images/rc/saml-domain-verified.png and /dev/null differ diff --git a/static/images/rc/saml/ad_saml_10.png b/static/images/rc/saml/ad_saml_10.png deleted file mode 100644 index 12bc12d642..0000000000 Binary files a/static/images/rc/saml/ad_saml_10.png and /dev/null differ diff --git a/static/images/rc/saml/ad_saml_12.png b/static/images/rc/saml/ad_saml_12.png deleted file mode 100644 index 9b97976240..0000000000 Binary files a/static/images/rc/saml/ad_saml_12.png and /dev/null differ diff --git a/static/images/rc/saml/ad_saml_13.png b/static/images/rc/saml/ad_saml_13.png deleted file mode 100644 index 04605cef4b..0000000000 Binary files a/static/images/rc/saml/ad_saml_13.png and /dev/null differ diff --git a/static/images/rc/saml/ad_saml_18.png b/static/images/rc/saml/ad_saml_18.png deleted file mode 100644 index c365f737f2..0000000000 Binary files a/static/images/rc/saml/ad_saml_18.png and /dev/null differ diff --git a/static/images/rc/saml/ad_saml_21.png b/static/images/rc/saml/ad_saml_21.png deleted file mode 100644 index 6886bce607..0000000000 Binary files a/static/images/rc/saml/ad_saml_21.png and /dev/null differ diff --git a/static/images/rc/saml/ad_saml_22.png b/static/images/rc/saml/ad_saml_22.png deleted file mode 100644 index 996a2fba5a..0000000000 Binary files a/static/images/rc/saml/ad_saml_22.png and /dev/null differ diff --git a/static/images/rc/saml/ad_saml_9.png b/static/images/rc/saml/ad_saml_9.png deleted file mode 100644 index 42f0499f87..0000000000 Binary files a/static/images/rc/saml/ad_saml_9.png and /dev/null differ diff --git a/static/images/rc/saml/auth0_saml_11.png b/static/images/rc/saml/auth0_saml_11.png deleted file mode 100644 index 31eabd6141..0000000000 Binary files a/static/images/rc/saml/auth0_saml_11.png and /dev/null differ diff --git a/static/images/rc/saml/auth0_saml_13.png b/static/images/rc/saml/auth0_saml_13.png deleted file mode 100644 index 6ca2a6b6f8..0000000000 Binary files a/static/images/rc/saml/auth0_saml_13.png and /dev/null differ diff --git a/static/images/rc/saml/auth0_saml_14.png b/static/images/rc/saml/auth0_saml_14.png deleted file mode 100644 index 3ef27e6026..0000000000 Binary files a/static/images/rc/saml/auth0_saml_14.png and /dev/null differ diff --git a/static/images/rc/saml/auth0_saml_15.png b/static/images/rc/saml/auth0_saml_15.png deleted file mode 100644 index 4478fe6010..0000000000 Binary files a/static/images/rc/saml/auth0_saml_15.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_15.png b/static/images/rc/saml/aws_iam_identity_center_saml_15.png deleted file mode 100644 index 8809dc2463..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_15.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_16.png b/static/images/rc/saml/aws_iam_identity_center_saml_16.png deleted file mode 100644 index 7b5b451282..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_16.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_17.png b/static/images/rc/saml/aws_iam_identity_center_saml_17.png deleted file mode 100644 index 85fffb77d9..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_17.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_19.png b/static/images/rc/saml/aws_iam_identity_center_saml_19.png deleted file mode 100644 index efddc31d4b..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_19.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_20.png b/static/images/rc/saml/aws_iam_identity_center_saml_20.png deleted file mode 100644 index e8d0ec3613..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_20.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_21.png b/static/images/rc/saml/aws_iam_identity_center_saml_21.png deleted file mode 100644 index c2991c8373..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_21.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_22.png b/static/images/rc/saml/aws_iam_identity_center_saml_22.png deleted file mode 100644 index bc8ba22553..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_22.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_7.png b/static/images/rc/saml/aws_iam_identity_center_saml_7.png deleted file mode 100644 index 0fed8dcba4..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_7.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_8.png b/static/images/rc/saml/aws_iam_identity_center_saml_8.png deleted file mode 100644 index bb98f785b9..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_8.png and /dev/null differ diff --git a/static/images/rc/saml/aws_iam_identity_center_saml_9.png b/static/images/rc/saml/aws_iam_identity_center_saml_9.png deleted file mode 100644 index 921ffa4e3c..0000000000 Binary files a/static/images/rc/saml/aws_iam_identity_center_saml_9.png and /dev/null differ diff --git a/static/images/rc/saml/google_workspace_saml_17.png b/static/images/rc/saml/google_workspace_saml_17.png deleted file mode 100644 index fa9015b638..0000000000 Binary files a/static/images/rc/saml/google_workspace_saml_17.png and /dev/null differ diff --git a/static/images/rc/saml/google_workspace_saml_19.png b/static/images/rc/saml/google_workspace_saml_19.png deleted file mode 100644 index 24a656579e..0000000000 Binary files a/static/images/rc/saml/google_workspace_saml_19.png and /dev/null differ diff --git a/static/images/rc/saml/google_workspace_saml_20.png b/static/images/rc/saml/google_workspace_saml_20.png deleted file mode 100644 index 5d7f0f235f..0000000000 Binary files a/static/images/rc/saml/google_workspace_saml_20.png and /dev/null differ diff --git a/static/images/rc/saml/google_workspace_saml_4.png b/static/images/rc/saml/google_workspace_saml_4.png deleted file mode 100644 index 7f8fa10587..0000000000 Binary files a/static/images/rc/saml/google_workspace_saml_4.png and /dev/null differ diff --git a/static/images/rc/saml/google_workspace_saml_5.png b/static/images/rc/saml/google_workspace_saml_5.png deleted file mode 100644 index b4dba7d0f2..0000000000 Binary files a/static/images/rc/saml/google_workspace_saml_5.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_4_group.png b/static/images/rc/saml/okta_saml_4_group.png deleted file mode 100644 index 855f86a616..0000000000 Binary files a/static/images/rc/saml/okta_saml_4_group.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_7.png b/static/images/rc/saml/okta_saml_7.png deleted file mode 100644 index bb148b8fcd..0000000000 Binary files a/static/images/rc/saml/okta_saml_7.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_7_5.png b/static/images/rc/saml/okta_saml_7_5.png deleted file mode 100644 index 9f12370812..0000000000 Binary files a/static/images/rc/saml/okta_saml_7_5.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_8.png b/static/images/rc/saml/okta_saml_8.png deleted file mode 100644 index 69debc5f19..0000000000 Binary files a/static/images/rc/saml/okta_saml_8.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_8_customer.png b/static/images/rc/saml/okta_saml_8_customer.png deleted file mode 100644 index c6a5f48a9b..0000000000 Binary files a/static/images/rc/saml/okta_saml_8_customer.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_app_int_15.png b/static/images/rc/saml/okta_saml_app_int_15.png deleted file mode 100644 index 4a6482ff87..0000000000 Binary files a/static/images/rc/saml/okta_saml_app_int_15.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_app_int_16.png b/static/images/rc/saml/okta_saml_app_int_16.png deleted file mode 100644 index 21c5a62ac2..0000000000 Binary files a/static/images/rc/saml/okta_saml_app_int_16.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_app_int_17.png b/static/images/rc/saml/okta_saml_app_int_17.png deleted file mode 100644 index c65785a45c..0000000000 Binary files a/static/images/rc/saml/okta_saml_app_int_17.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_app_int_18.png b/static/images/rc/saml/okta_saml_app_int_18.png deleted file mode 100644 index 343ae0d5e1..0000000000 Binary files a/static/images/rc/saml/okta_saml_app_int_18.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_user_1.png b/static/images/rc/saml/okta_saml_user_1.png deleted file mode 100644 index 8f68ebfb45..0000000000 Binary files a/static/images/rc/saml/okta_saml_user_1.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_user_2.png b/static/images/rc/saml/okta_saml_user_2.png deleted file mode 100644 index 8ca2d3dd53..0000000000 Binary files a/static/images/rc/saml/okta_saml_user_2.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_user_3.png b/static/images/rc/saml/okta_saml_user_3.png deleted file mode 100644 index f04090a3fc..0000000000 Binary files a/static/images/rc/saml/okta_saml_user_3.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_user_4.png b/static/images/rc/saml/okta_saml_user_4.png deleted file mode 100644 index a0e1398c31..0000000000 Binary files a/static/images/rc/saml/okta_saml_user_4.png and /dev/null differ diff --git a/static/images/rc/saml/okta_saml_user_5.png b/static/images/rc/saml/okta_saml_user_5.png deleted file mode 100644 index 8565d24ef7..0000000000 Binary files a/static/images/rc/saml/okta_saml_user_5.png and /dev/null differ diff --git a/static/images/rc/saml/ping_identity_saml_12.png b/static/images/rc/saml/ping_identity_saml_12.png deleted file mode 100644 index 63385c02ee..0000000000 Binary files a/static/images/rc/saml/ping_identity_saml_12.png and /dev/null differ diff --git a/static/images/rc/saml/ping_identity_saml_15.png b/static/images/rc/saml/ping_identity_saml_15.png deleted file mode 100644 index 0f5664e7de..0000000000 Binary files a/static/images/rc/saml/ping_identity_saml_15.png and /dev/null differ diff --git a/static/images/rc/saml/ping_identity_saml_18.png b/static/images/rc/saml/ping_identity_saml_18.png deleted file mode 100644 index a5ec86e071..0000000000 Binary files a/static/images/rc/saml/ping_identity_saml_18.png and /dev/null differ diff --git a/static/images/rc/saml/ping_identity_saml_19.png b/static/images/rc/saml/ping_identity_saml_19.png deleted file mode 100644 index f22c68160d..0000000000 Binary files a/static/images/rc/saml/ping_identity_saml_19.png and /dev/null differ diff --git a/static/images/rc/saml/popup-saml-convert-users.png b/static/images/rc/saml/popup-saml-convert-users.png deleted file mode 100644 index be289c0a56..0000000000 Binary files a/static/images/rc/saml/popup-saml-convert-users.png and /dev/null differ diff --git a/static/images/rc/saml/sm_saml_11.png b/static/images/rc/saml/sm_saml_11.png deleted file mode 100644 index 96e5849086..0000000000 Binary files a/static/images/rc/saml/sm_saml_11.png and /dev/null differ diff --git a/static/images/rc/saml/sm_saml_12.png b/static/images/rc/saml/sm_saml_12.png deleted file mode 100644 index 8696dda2f0..0000000000 Binary files a/static/images/rc/saml/sm_saml_12.png and /dev/null differ diff --git a/static/images/rc/saml/sm_saml_13.png b/static/images/rc/saml/sm_saml_13.png deleted file mode 100644 index b49fa36a1c..0000000000 Binary files a/static/images/rc/saml/sm_saml_13.png and /dev/null differ diff --git a/static/images/rc/saml/sm_saml_2.png b/static/images/rc/saml/sm_saml_2.png deleted file mode 100644 index aaed38894b..0000000000 Binary files a/static/images/rc/saml/sm_saml_2.png and /dev/null differ diff --git a/static/images/rc/saml/sm_saml_9.png b/static/images/rc/saml/sm_saml_9.png deleted file mode 100644 index 1982afeb1c..0000000000 Binary files a/static/images/rc/saml/sm_saml_9.png and /dev/null differ diff --git a/static/images/rc/saml/stop.png b/static/images/rc/saml/stop.png deleted file mode 100644 index 85c433d0c0..0000000000 Binary files a/static/images/rc/saml/stop.png and /dev/null differ diff --git a/static/images/rc/settings-cloud-api-key.png b/static/images/rc/settings-cloud-api-key.png deleted file mode 100644 index 8a565d311c..0000000000 Binary files a/static/images/rc/settings-cloud-api-key.png and /dev/null differ diff --git a/static/images/rc/settings.png b/static/images/rc/settings.png deleted file mode 100644 index 616a33ae9f..0000000000 Binary files a/static/images/rc/settings.png and /dev/null differ diff --git a/static/images/rc/source-ip-subnet.png b/static/images/rc/source-ip-subnet.png deleted file mode 100644 index 877e2897b4..0000000000 Binary files a/static/images/rc/source-ip-subnet.png and /dev/null differ diff --git a/static/images/rc/ssl-client-auth.png b/static/images/rc/ssl-client-auth.png deleted file mode 100644 index 891a340141..0000000000 Binary files a/static/images/rc/ssl-client-auth.png and /dev/null differ diff --git a/static/images/rc/subscription-cancel-confirm-dialog.png b/static/images/rc/subscription-cancel-confirm-dialog.png deleted file mode 100644 index c95f6980ca..0000000000 Binary files a/static/images/rc/subscription-cancel-confirm-dialog.png and /dev/null differ diff --git a/static/images/rc/subscription-change-button.png b/static/images/rc/subscription-change-button.png deleted file mode 100644 index b637f470e6..0000000000 Binary files a/static/images/rc/subscription-change-button.png and /dev/null differ diff --git a/static/images/rc/subscription-change-disabled.png b/static/images/rc/subscription-change-disabled.png deleted file mode 100644 index a9ba4b4cbd..0000000000 Binary files a/static/images/rc/subscription-change-disabled.png and /dev/null differ diff --git a/static/images/rc/subscription-change-fixed.png b/static/images/rc/subscription-change-fixed.png deleted file mode 100755 index 4e04a1855e..0000000000 Binary files a/static/images/rc/subscription-change-fixed.png and /dev/null differ diff --git a/static/images/rc/subscription-create-flexible.png b/static/images/rc/subscription-create-flexible.png deleted file mode 100644 index 48bf430853..0000000000 Binary files a/static/images/rc/subscription-create-flexible.png and /dev/null differ diff --git a/static/images/rc/subscription-create-free.png b/static/images/rc/subscription-create-free.png deleted file mode 100755 index 8a86cbc648..0000000000 Binary files a/static/images/rc/subscription-create-free.png and /dev/null differ diff --git a/static/images/rc/subscription-fixed-databases-none.png b/static/images/rc/subscription-fixed-databases-none.png deleted file mode 100644 index ad229681f6..0000000000 Binary files a/static/images/rc/subscription-fixed-databases-none.png and /dev/null differ diff --git a/static/images/rc/subscription-flexible-databases-tab-update.png b/static/images/rc/subscription-flexible-databases-tab-update.png deleted file mode 100644 index 3422f65f83..0000000000 Binary files a/static/images/rc/subscription-flexible-databases-tab-update.png and /dev/null differ diff --git a/static/images/rc/subscription-free-cancel-subscription.png b/static/images/rc/subscription-free-cancel-subscription.png deleted file mode 100644 index 2e627c20c9..0000000000 Binary files a/static/images/rc/subscription-free-cancel-subscription.png and /dev/null differ diff --git a/static/images/rc/subscription-free-delete-subscription.png b/static/images/rc/subscription-free-delete-subscription.png deleted file mode 100644 index 84be74b956..0000000000 Binary files a/static/images/rc/subscription-free-delete-subscription.png and /dev/null differ diff --git a/static/images/rc/subscription-list-empty.png b/static/images/rc/subscription-list-empty.png deleted file mode 100755 index 6d12a070a4..0000000000 Binary files a/static/images/rc/subscription-list-empty.png and /dev/null differ diff --git a/static/images/rc/subscription-list-free-no-databases.png b/static/images/rc/subscription-list-free-no-databases.png deleted file mode 100644 index 2cbdc7b5bc..0000000000 Binary files a/static/images/rc/subscription-list-free-no-databases.png and /dev/null differ diff --git a/static/images/rc/subscription-menu-select.png b/static/images/rc/subscription-menu-select.png deleted file mode 100644 index a26c1c8ffc..0000000000 Binary files a/static/images/rc/subscription-menu-select.png and /dev/null differ diff --git a/static/images/rc/subscription-new-cloud-vendor-options-redis-7-preview.png b/static/images/rc/subscription-new-cloud-vendor-options-redis-7-preview.png deleted file mode 100644 index 777a0917df..0000000000 Binary files a/static/images/rc/subscription-new-cloud-vendor-options-redis-7-preview.png and /dev/null differ diff --git a/static/images/rc/subscription-new-cloud-vendor-options.png b/static/images/rc/subscription-new-cloud-vendor-options.png deleted file mode 100755 index f008fd5a44..0000000000 Binary files a/static/images/rc/subscription-new-cloud-vendor-options.png and /dev/null differ diff --git a/static/images/rc/subscription-new-fixed-plan-options.png b/static/images/rc/subscription-new-fixed-plan-options.png deleted file mode 100755 index d5efa963c0..0000000000 Binary files a/static/images/rc/subscription-new-fixed-plan-options.png and /dev/null differ diff --git a/static/images/rc/subscription-new-flexible-advanced-cidr.png b/static/images/rc/subscription-new-flexible-advanced-cidr.png deleted file mode 100644 index 14274f36d8..0000000000 Binary files a/static/images/rc/subscription-new-flexible-advanced-cidr.png and /dev/null differ diff --git a/static/images/rc/subscription-new-flexible-advanced-multi-az.png b/static/images/rc/subscription-new-flexible-advanced-multi-az.png deleted file mode 100644 index 6e4c89ae41..0000000000 Binary files a/static/images/rc/subscription-new-flexible-advanced-multi-az.png and /dev/null differ diff --git a/static/images/rc/subscription-new-plan-options.png b/static/images/rc/subscription-new-plan-options.png deleted file mode 100644 index fe20999246..0000000000 Binary files a/static/images/rc/subscription-new-plan-options.png and /dev/null differ diff --git a/static/images/rc/subscription-new-redis-7-preview-toggle.png b/static/images/rc/subscription-new-redis-7-preview-toggle.png deleted file mode 100644 index feb4513445..0000000000 Binary files a/static/images/rc/subscription-new-redis-7-preview-toggle.png and /dev/null differ diff --git a/static/images/rc/subscription-type-cache.png b/static/images/rc/subscription-type-cache.png deleted file mode 100644 index 00a94d976f..0000000000 Binary files a/static/images/rc/subscription-type-cache.png and /dev/null differ diff --git a/static/images/rc/subscription-type-standard.png b/static/images/rc/subscription-type-standard.png deleted file mode 100644 index 71222be78f..0000000000 Binary files a/static/images/rc/subscription-type-standard.png and /dev/null differ diff --git a/static/images/rc/subscription-view-flexible.png b/static/images/rc/subscription-view-flexible.png deleted file mode 100755 index d6090e2638..0000000000 Binary files a/static/images/rc/subscription-view-flexible.png and /dev/null differ diff --git a/static/images/rc/tags-database-tab.png b/static/images/rc/tags-database-tab.png deleted file mode 100644 index c7e28c74b7..0000000000 Binary files a/static/images/rc/tags-database-tab.png and /dev/null differ diff --git a/static/images/rc/tags-icon-add-tags.png b/static/images/rc/tags-icon-add-tags.png deleted file mode 100644 index d56236f2ff..0000000000 Binary files a/static/images/rc/tags-icon-add-tags.png and /dev/null differ diff --git a/static/images/rc/tags-icon-delete.png b/static/images/rc/tags-icon-delete.png deleted file mode 100644 index 6dcb3cb985..0000000000 Binary files a/static/images/rc/tags-icon-delete.png and /dev/null differ diff --git a/static/images/rc/tags-icon-edit.png b/static/images/rc/tags-icon-edit.png deleted file mode 100644 index 6f563aed8f..0000000000 Binary files a/static/images/rc/tags-icon-edit.png and /dev/null differ diff --git a/static/images/rc/usage_report.png b/static/images/rc/usage_report.png deleted file mode 100644 index d6cd0ba881..0000000000 Binary files a/static/images/rc/usage_report.png and /dev/null differ diff --git a/static/images/rc/user-profile-setting-buttons.png b/static/images/rc/user-profile-setting-buttons.png deleted file mode 100755 index 2a6aa928d4..0000000000 Binary files a/static/images/rc/user-profile-setting-buttons.png and /dev/null differ diff --git a/static/images/rc/view-database-extended.png b/static/images/rc/view-database-extended.png deleted file mode 100644 index efdafa9e51..0000000000 Binary files a/static/images/rc/view-database-extended.png and /dev/null differ diff --git a/static/images/rc/view-db.png b/static/images/rc/view-db.png deleted file mode 100644 index ba3ba8823f..0000000000 Binary files a/static/images/rc/view-db.png and /dev/null differ diff --git a/static/images/rc/view-edit.png b/static/images/rc/view-edit.png deleted file mode 100644 index 3ba3dd7401..0000000000 Binary files a/static/images/rc/view-edit.png and /dev/null differ diff --git a/static/images/rc/view_database-actions.png b/static/images/rc/view_database-actions.png deleted file mode 100644 index fd77fcce2e..0000000000 Binary files a/static/images/rc/view_database-actions.png and /dev/null differ diff --git a/static/images/rc/vpc-aws.png b/static/images/rc/vpc-aws.png deleted file mode 100644 index 064e658d39..0000000000 Binary files a/static/images/rc/vpc-aws.png and /dev/null differ diff --git a/static/images/rc/vpc-gcloud-command.png b/static/images/rc/vpc-gcloud-command.png deleted file mode 100644 index 11f7a4d241..0000000000 Binary files a/static/images/rc/vpc-gcloud-command.png and /dev/null differ diff --git a/static/images/rc/vpc-gpc.png b/static/images/rc/vpc-gpc.png deleted file mode 100644 index 8973b83302..0000000000 Binary files a/static/images/rc/vpc-gpc.png and /dev/null differ diff --git a/static/images/rc/zone-mapping.png b/static/images/rc/zone-mapping.png deleted file mode 100644 index b37316817d..0000000000 Binary files a/static/images/rc/zone-mapping.png and /dev/null differ diff --git a/static/images/rv/api/swagger-database-create-documentation.png b/static/images/rv/api/swagger-database-create-documentation.png deleted file mode 100644 index 37657e9389..0000000000 Binary files a/static/images/rv/api/swagger-database-create-documentation.png and /dev/null differ