Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/common/NewEntityTab/cmp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function NewEntityTab(props: NewEntityTabProps) {
},
{
id: 'confidential',
name: 'Confidential',
name: 'TEE Instance',
label: { label: 'BETA', position: 'top' },
},
]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export type ManageEntityHeaderProps = {
name: string
isAllocated: boolean
entity?: Executable
type: 'instance' | 'function' | 'GPU instance' | 'confidential instance'
type: 'instance' | 'function' | 'GPU instance' | 'TEE instance'

calculatedStatus: ExecutableCalculatedStatus

Expand Down
6 changes: 3 additions & 3 deletions src/components/pages/console/DashboardPage/cmp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,12 +207,12 @@ export default function DashboardPage() {
}
isComingSoon={!confidentialsAuthz}
isBeta
title="confidentials"
title="TEE instances"
img={EntityTypeObject[EntityType.Confidential]}
dashboardPath="/console/computing/confidential"
createPath="/console/computing/confidential/new"
description="Protect your sensitive workloads with our Confidential VMs. Designed for maximum privacy and security, ensuring your data stays safe."
introductionButtonText="Create your confidential"
description="Protect your sensitive workloads with our TEE VMs. Designed for maximum privacy and security, ensuring your data stays safe."
introductionButtonText="Create your TEE Instance"
information={{
type: 'computing',
data: confidentialsAggregatedStatus.total,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ export default function ConfidentialDashboardPage() {
imageSrc="/img/dashboard/instance.svg"
imageAlt="Confidential illustration"
info="WHAT IS A..."
title="Confidential Instance"
description="Protect your sensitive workloads with our Confidential VMs. Designed for maximum privacy and security, ensuring your execution and data stays safe."
title="TEE Instance"
description="Protect your sensitive workloads with our TEE VMs. Designed for maximum privacy and security, ensuring your execution and data stays safe."
buttonUrl="/console/computing/confidential/new"
buttonText="Create a Confidential Instance"
buttonText="Create a TEE Instance"
externalLinkText="Developer docs"
externalLinkUrl={NAVIGATION_URLS.docs.confidentials}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function useConfidentialDashboardPage(): UseConfidentialDashboardPageRetu
return [
{
id: 'confidential',
name: 'Confidentials',
name: 'TEE Instances',
label: { label: getLabel(confidentials), position: 'bottom' },
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ export const ConfidentialsTabContent = memo(

<div tw="mt-20 text-center">
<CreateConfidentialButtonMemo>
Create confidential instance
Create TEE instance
</CreateConfidentialButtonMemo>
</div>
</>
) : (
<div tw="mt-10 text-center">
<CreateConfidentialButtonMemo>
Create your first confidential instance
Create your first TEE instance
</CreateConfidentialButtonMemo>
</div>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function ManageConfidential() {
return (
<>
<Head>
<title>Console | Manage Confidential | Aleph Cloud</title>
<title>Console | Manage TEE Instance | Aleph Cloud</title>
<meta
name="description"
content="Manage your compute instance on Aleph Cloud"
Expand All @@ -102,7 +102,7 @@ export default function ManageConfidential() {
<ManageEntityHeader
entity={confidentialInstance}
name={name}
type="confidential instance"
type="TEE instance"
isAllocated={isAllocated}
calculatedStatus={calculatedStatus}
// Start action
Expand Down Expand Up @@ -137,7 +137,7 @@ export default function ManageConfidential() {
<InstanceEntityDetails
key="confidentialInstance-details"
entity={confidentialInstance}
title="CONFIDENTIAL INSTANCE"
title="TEE INSTANCE"
/>,
<EntityLogsControl
key="confidentialInstance-logs-control"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ export default function NewConfidentialPage() {
return (
<>
<Head>
<title>Console | New Confidential | Aleph Cloud</title>
<title>Console | New TEE Instance | Aleph Cloud</title>
<meta
name="description"
content="Create a new confidential computing instance on Aleph Cloud"
content="Create a new TEE Instance on Aleph Cloud"
/>
</Head>
<BackButtonSection handleBack={handleBack} />
Expand Down Expand Up @@ -169,7 +169,7 @@ export default function NewConfidentialPage() {
<ExternalLink
href="https://github.com/aleph-im/aleph-vm/tree/main/examples/example_confidential_image"
color="main0"
text="Aleph VM Examples - Confidential Image"
text="Aleph VM Examples - TEE Image"
/>
</p>
<CodeBlock
Expand Down Expand Up @@ -369,9 +369,7 @@ export default function NewConfidentialPage() {
<CenteredContainer>
<ToggleContainer
toggleTitle={
<SectionTitle number={3}>
Create Confidential Instance
</SectionTitle>
<SectionTitle number={3}>Create TEE Instance</SectionTitle>
}
>
<div tw="flex flex-col gap-6">
Expand Down Expand Up @@ -407,7 +405,7 @@ export default function NewConfidentialPage() {
href="/computing/confidential"
animation="icon-to-right-on-hover"
>
Check your Confidentials <Icon name="arrow-right" />
Check your TEE Instances <Icon name="arrow-right" />
</Button>
</CenteredContainer>
</section>
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
UserCancelled: new Error('User cancelled the action'),
InvalidNetwork: new Error('Invalid network'),
InstanceNotFound: new Error('Instance not found'),
ConfidentialNotFound: new Error('Confidential not found'),
ConfidentialNotFound: new Error('TEE Instance not found'),
FunctionNotFound: new Error('Function not found'),
WebsiteNotFound: new Error('Website not found'),
VolumeNotFound: new Error('Volume not found'),
Expand All @@ -39,7 +39,7 @@ export default {
InvalidCRNAddress: new Error('Invalid CRN address'),
InvalidCRNSpecs: new Error('Invalid CRN min specs'),
InvalidConfidentialNodeRequirements: new Error(
'Invalid Confidential VM Node Requirements',
'Invalid TEE VM Node Requirements',
),
CustomRuntimeNeeded: new Error('Custom runtime should be added'),
ReceivedRequired: new Error(
Expand Down
4 changes: 2 additions & 2 deletions src/hooks/common/useRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ export function useRoutes(): UseRoutesReturn {
icon: 'instance',
},
{
name: 'GPU',
name: 'GPU Instances',
icon: 'gpu',
label: '(BETA)',
href: NAVIGATION_URLS.console.computing.gpus.home,
},
{
name: 'Confidentials',
name: 'TEE Instances',
href: NAVIGATION_URLS.console.computing.confidentials.home,
label: '(BETA)',
icon: 'confidential',
Expand Down