Skip to content

Commit 9a0852e

Browse files
Merge branch 'main' into app_details_pod_fix
2 parents fd0a250 + c24a48f commit 9a0852e

File tree

26 files changed

+2389
-2303
lines changed

26 files changed

+2389
-2303
lines changed

.env

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ CLUSTER_TERMINAL_CONNECTION_RETRY_COUNT=7
3030
ENABLE_CHART_SEARCH_IN_HELM_DEPLOY=false
3131
HIDE_EXCLUDE_INCLUDE_GIT_COMMITS=true
3232
ENABLE_BUILD_CONTEXT=false
33-
CLAIR_TOOL_VERSION=
33+
CLAIR_TOOL_VERSION=
3434
ENABLE_RESTART_WORKLOAD=false
3535
ENABLE_SCOPED_VARIABLES=false
3636
DEFAULT_CI_TRIGGER_TYPE_MANUAL=false
3737
ANNOUNCEMENT_BANNER_MSG=
38+
LOGIN_PAGE_IMAGE=
39+
LOGIN_PAGE_IMAGE_BG=

config.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
| SENTRY_ENABLED | "false" | Sentry integration status |
1313
| SENTRY_ENV | stage | Sentry environment |
1414
| SENTRY_ERROR_ENABLED | false | To send uncaught errors to sentry |
15-
| SENTRY_PERFORMANCE_ENABLED | false | To send persormance sentry |
15+
| SENTRY_PERFORMANCE_ENABLED | false | To send persormance sentry |
1616
| SENTRY_DSN | '' | SENTRY Data Source Name |
1717
| SENTRY_TRACES_SAMPLE_RATE | 0.2 | Rate at which data send to sentry.(min=0 max=1)|
1818
| USE_V2 | "true" | Use the v2 APIs |
@@ -25,5 +25,7 @@
2525
| RECOMMEND_SECURITY_SCANNING | "false" | Recommend security scanning |
2626
| FORCE_SECURITY_SCANNING | "false" | Force Security Scanning |
2727
| CLUSTER_TERMINAL_CONNECTION_POLLING_INTERVAL | 7000 | Interval for checking connection with cluster terminal. |
28+
| LOGIN_PAGE_IMAGE | "" | Login page image url |
29+
| LOGIN_PAGE_IMAGE_BG | "" | Login page image background color code |
2830

2931
# DASHBOARD CONFIG SECRET

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"homepage": "/dashboard",
66
"dependencies": {
7-
"@devtron-labs/devtron-fe-common-lib": "0.0.37",
7+
"@devtron-labs/devtron-fe-common-lib": "0.0.40",
88
"@sentry/browser": "^7.3.1",
99
"@sentry/integrations": "^7.3.1",
1010
"@sentry/tracing": "^7.3.1",
Lines changed: 7 additions & 0 deletions
Loading

src/components/ApplicationGroup/AppGroup.types.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export interface BulkCDDetailType extends BulkTriggerAppDetailType {
4444
stageType?: DeploymentNodeType
4545
triggerType?: string
4646
envName: string
47+
envId: number
4748
parentPipelineId?: string
4849
parentPipelineType?: WorkflowNodeType
4950
parentEnvironmentName?: string
@@ -89,14 +90,14 @@ export interface BulkCDTriggerType {
8990
closePopup: (e) => void
9091
updateBulkInputMaterial: (materialList: Record<string, any>) => void
9192
onClickTriggerBulkCD: (appsToRetry?: Record<string, boolean>) => void
92-
changeTab: (
93+
changeTab?: (
9394
materrialId: string | number,
9495
artifactId: number,
9596
tab: CDModalTabType,
9697
selectedCDDetail?: { id: number; type: DeploymentNodeType },
9798
) => void
98-
toggleSourceInfo: (materialIndex: number, selectedCDDetail?: { id: number; type: DeploymentNodeType }) => void
99-
selectImage: (
99+
toggleSourceInfo?: (materialIndex: number, selectedCDDetail?: { id: number; type: DeploymentNodeType }) => void
100+
selectImage?: (
100101
index: number,
101102
materialType: string,
102103
selectedCDDetail?: { id: number; type: DeploymentNodeType },

src/components/ApplicationGroup/Details/TriggerView/BulkCDTrigger.tsx

Lines changed: 285 additions & 132 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)