feat(ui): add Oracle Cloud Infrastructure (OCI) provider support (#8984)

This commit is contained in:
Sergio Garcia
2025-10-28 17:30:12 -04:00
committed by GitHub
parent dad100b87a
commit 0ca059b45b
30 changed files with 374 additions and 10 deletions

View File

@@ -10,6 +10,7 @@ import {
GitHubProviderBadge,
KS8ProviderBadge,
M365ProviderBadge,
OracleCloudProviderBadge,
} from "@/components/icons/providers-badge";
import { CustomButton } from "@/components/ui/custom/custom-button";
import { ProviderOverviewProps } from "@/types";
@@ -37,6 +38,8 @@ export const ProvidersOverview = ({
return <KS8ProviderBadge width={30} height={30} />;
case "github":
return <GitHubProviderBadge width={30} height={30} />;
case "oci":
return <OracleCloudProviderBadge width={30} height={30} />;
default:
return null;
}
@@ -49,6 +52,7 @@ export const ProvidersOverview = ({
gcp: "GCP",
kubernetes: "Kubernetes",
github: "GitHub",
oci: "OCI",
};
const providers = PROVIDER_TYPES.map((providerType) => ({