-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathconstants.tsx
46 lines (45 loc) · 1.85 KB
/
constants.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { IconName } from '@devtron-labs/devtron-fe-common-lib'
import { CreateClusterTypeEnum, SidebarConfigType } from './types'
export const SIDEBAR_CONFIG: SidebarConfigType = {
[CreateClusterTypeEnum.CONNECT_CLUSTER]: {
title: 'Connect cluster',
iconName: 'ic-ci-linked' as IconName,
body: (
<p className="m-0">
Connect an existing Kubernetes cluster to manage Kubernetes resources and deploy containerized
applications using Devtron.
</p>
),
},
[CreateClusterTypeEnum.CREATE_EKS_CLUSTER]: {
title: 'Create EKS cluster',
iconName: 'ic-cluster' as IconName,
body: (
<>
<p className="m-0">With Devtron, you can effortlessly create an Amazon EKS cluster.</p>
<p className="m-0">
Amazon Elastic Kubernetes Service (Amazon EKS) is a fully managed Kubernetes service that enables
you to run Kubernetes seamlessly in both AWS Cloud and on-premises data centers.
</p>
</>
),
isEnterprise: true,
},
[CreateClusterTypeEnum.ADD_ISOLATED_CLUSTER]: {
title: 'Add Isolated Cluster',
iconName: 'ic-add' as IconName,
documentationHeader: 'Isolated Cluster',
body: (
<>
<p className="m-0">
An isolated cluster in Devtron is an air-gapped Kubernetes cluster with restricted network access.
</p>
<p className="m-0">
Since Devtron does not have connectivity to these clusters, deployments are managed by packaging
manifests and images for manual installation or retrieval from an OCI registry (if enabled).
</p>
</>
),
isEnterprise: true,
},
} as const