Skip to content
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8f2c4c6
feat: add ClustersAndEnvironments in Pages
Apr 6, 2025
5859e44
feat: add Icons & installationId in cluster capacity type
Apr 7, 2025
531c001
chore: move types from fe-lib
Apr 8, 2025
41b1d49
feat: add InstallationClusterStepType
Apr 8, 2025
169225d
chore: add icons
arunjaindev Apr 8, 2025
4bf6c1d
feat: add installation cluster enums
arunjaindev Apr 8, 2025
67a2f77
feat: add installedEntityId to InstallationClusterConfigDTO
Apr 8, 2025
e85ef7a
feat: add correspondingClusterId to InstallationClusterConfigType
Apr 8, 2025
67cc30e
feat: use cn-9 in StatusComponent
Apr 9, 2025
c495ff5
Merge branch 'main' of https://github.com/devtron-labs/devtron-fe-com…
arunjaindev Apr 9, 2025
e5ea790
Merge branch 'feature/create-cluster' of github.com:devtron-labs/devt…
Apr 9, 2025
c40c43b
chore: bump version
Apr 9, 2025
cb64c44
fix: remove sort of fields from ObjectFieldTemplate
Apr 10, 2025
6bb7810
chore: bump version
Apr 10, 2025
cae4430
Merge pull request #689 from devtron-labs/feat/edit-cluster
whoami-amrit Apr 11, 2025
e896aa4
Merge branch 'feat/eks-demo' into feature/create-cluster
Apr 11, 2025
a6d4f76
chore: delete enterprise tag and use svg instead
arunjaindev Apr 11, 2025
3220c09
fix: review comments
Apr 16, 2025
44a9687
revert: Button component to develop
Apr 16, 2025
1b6857c
Merge branch 'develop' of github.com:devtron-labs/devtron-fe-common-l…
Apr 16, 2025
c7f53f9
fix: review comments
Apr 16, 2025
21d177c
fix: update NewClusterFormProps type
Apr 22, 2025
f7f22e0
chore: remove installation statuses from ClusterStatusType
Apr 22, 2025
f03156a
feat: update NewClusterFormProps type
Apr 24, 2025
1b0aa58
fix: self review
Apr 24, 2025
21ef0d5
feat: add Deleting state to cluster installation status
Apr 25, 2025
6fe547f
fix: review comment in testimonials
Apr 28, 2025
35b6d92
Merge branch 'develop' of github.com:devtron-labs/devtron-fe-common-l…
Apr 28, 2025
01c519b
chore: bump version
Apr 28, 2025
162dd7c
fix: review comments
Apr 30, 2025
7fea862
Merge branch 'develop' of github.com:devtron-labs/devtron-fe-common-l…
Apr 30, 2025
656e8cb
chore: bump version
Apr 30, 2025
3fc451b
Merge branch 'develop' of github.com:devtron-labs/devtron-fe-common-l…
May 15, 2025
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
19 changes: 0 additions & 19 deletions src/Assets/Icon/ic-medal.svg

This file was deleted.

5 changes: 5 additions & 0 deletions src/Assets/IconV2/ic-amazon-eks.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/Assets/IconV2/ic-cluster.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/Assets/IconV2/ic-enterprise-feat.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions src/Assets/IconV2/ic-enterprise-tag.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 0 additions & 22 deletions src/Assets/IconV2/ic-login-devtron-logo.svg

This file was deleted.

5 changes: 3 additions & 2 deletions src/Common/Common.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import {
GlobalVariableDTO,
GlobalVariableOptionType,
UserRole,
APIOptions,
} from './Types'
import { ApiResourceType, STAGE_MAP } from '../Pages'
import { RefVariableType, VariableTypeFormat } from './CIPipeline.Types'
Expand Down Expand Up @@ -452,9 +453,9 @@ export function getClusterListMin() {
export const getResourceGroupListRaw = (clusterId: string): Promise<ResponseType<ApiResourceType>> =>
get(`${ROUTES.API_RESOURCE}/${ROUTES.GVK}/${clusterId}`)

export function getNamespaceListMin(clusterIdsCsv: string): Promise<EnvironmentListHelmResponse> {
export function getNamespaceListMin(clusterIdsCsv: string, abortControllerRef?: APIOptions['abortControllerRef']): Promise<EnvironmentListHelmResponse> {
const URL = `${ROUTES.NAMESPACE}/autocomplete?ids=${clusterIdsCsv}`
return get(URL)
return get(URL, { abortControllerRef })
}
export function getWebhookEventsForEventId(eventId: string | number) {
const URL = `${ROUTES.GIT_HOST_EVENT}/${eventId}`
Expand Down
2 changes: 0 additions & 2 deletions src/Common/RJSF/templates/ObjectFieldTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ const Field = ({
return true
}
})
// NOTE: we probably should use uiSchema instead?
.sort((prop) => (schema.properties?.[prop.name]?.type === 'boolean' ? -1 : 1))
.map((prop) => prop.content)

if (hasAdditionalProperties) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export type { NewClusterFormFooterProps, NewClusterFormProps } from './types'
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export interface NewClusterFormFooterProps {
apiCallInProgress: boolean
handleModalClose: () => void
}

export interface NewClusterFormProps extends Pick<NewClusterFormFooterProps, 'handleModalClose'> {
FooterComponent: React.FunctionComponent<NewClusterFormFooterProps> &
Record<'CTA' | 'Start', React.FunctionComponent<{}>>
}
1 change: 1 addition & 0 deletions src/Pages/GlobalConfigurations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@

export * from './Authorization'
export * from './BuildInfra'
export * from './ClustersAndEnvironments'
export * from './DeploymentCharts'
export * from './ScopedVariables'
3 changes: 2 additions & 1 deletion src/Pages/ResourceBrowser/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,5 @@ export const drainNodeCapacity = (
abortControllerRef?: APIOptions['abortControllerRef'],
): Promise<ResponseType> => put(`${ROUTES.NODE_CAPACITY}/drain`, requestPayload, { abortControllerRef })

export const getClusterListRaw = () => get<ClusterDetail[]>(ROUTES.CLUSTER_LIST_RAW)
export const getClusterListRaw = (abortControllerRef?: APIOptions['abortControllerRef']) =>
get<ClusterDetail[]>(ROUTES.CLUSTER_LIST_RAW, { abortControllerRef })
Loading