Skip to content

Commit 755b1f1

Browse files
committed
feat: add flux in app types
1 parent 983ae44 commit 755b1f1

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/Common/AppStatus/constants.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ export const StatusConstants = {
2020
normalCase: 'Not deployed',
2121
lowerCase: 'not-deployed',
2222
},
23+
NOT_READY: {
24+
noSpaceLower: 'notready',
25+
normalCase: 'Not Ready',
26+
lowerCase: 'not-ready',
27+
},
2328
APP_STATUS: {
2429
noSpaceLower: 'appStatus',
2530
normalText: 'App status',

src/Shared/constants.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,5 +425,6 @@ export const AppListConstants = {
425425
NAMESPACE: 'namespace',
426426
ENVIRONMENT: 'environment',
427427
APP_STATUS: 'appStatus',
428+
DEPLOYMENT_TYPE: 'deploymentType',
428429
},
429430
}

src/Shared/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ export enum AppType {
161161
DEVTRON_HELM_CHART = 'devtron_helm_chart',
162162
EXTERNAL_HELM_CHART = 'external_helm_chart',
163163
EXTERNAL_ARGO_APP = 'external_argo_app',
164+
EXTERNAL_FLUX_APP = 'external_flux_app',
164165
}
165166

166167
export interface HelmReleaseStatus {

0 commit comments

Comments
 (0)