Skip to content

Commit af1bb2a

Browse files
authored
Merge branch 'main' into feat-async-install-devtron
2 parents 1cab6fe + fe661e4 commit af1bb2a

File tree

124 files changed

+4574
-3230
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+4574
-3230
lines changed

.env

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +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
36-
DEFAULT_CI_TRIGGER_TYPE_MANUAL=false
36+
DEFAULT_CI_TRIGGER_TYPE_MANUAL=false
37+
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.34",
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",

public/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<meta charset="utf-8" />
66
<link rel="preload" as="style" href='//fonts.googleapis.com/css?family=Open+Sans' type='text/css'>
77
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
8+
<link
9+
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap"
10+
rel="stylesheet"
11+
/>
812
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
913
<script src="%PUBLIC_URL%/env-config.js"></script>
1014
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
@@ -57,4 +61,4 @@
5761
title_el.innerHTML = "Devtron Sandbox";
5862
</script>
5963

60-
</html>
64+
</html>

src/assets/icons/cluster-overview.svg

Lines changed: 6 additions & 0 deletions
Loading

src/assets/icons/ic-activity.svg

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 7 additions & 0 deletions
Loading

src/assets/icons/ic-megaphone.svg

Lines changed: 3 additions & 0 deletions
Loading

src/assets/icons/ic-world-black.svg

Lines changed: 3 additions & 0 deletions
Loading

src/components/ApplicationGroup/AppGroup.types.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export interface BulkCIDetailType extends BulkTriggerAppDetailType {
2424
isFirstTrigger: boolean
2525
isCacheAvailable: boolean
2626
isLinkedCI: boolean
27+
isJobCI: boolean
2728
isWebhookCI: boolean
2829
parentAppId: number
2930
parentCIPipelineId: number
@@ -43,6 +44,7 @@ export interface BulkCDDetailType extends BulkTriggerAppDetailType {
4344
stageType?: DeploymentNodeType
4445
triggerType?: string
4546
envName: string
47+
envId: number
4648
parentPipelineId?: string
4749
parentPipelineType?: WorkflowNodeType
4850
parentEnvironmentName?: string
@@ -88,14 +90,14 @@ export interface BulkCDTriggerType {
8890
closePopup: (e) => void
8991
updateBulkInputMaterial: (materialList: Record<string, any>) => void
9092
onClickTriggerBulkCD: (appsToRetry?: Record<string, boolean>) => void
91-
changeTab: (
93+
changeTab?: (
9294
materrialId: string | number,
9395
artifactId: number,
9496
tab: CDModalTabType,
9597
selectedCDDetail?: { id: number; type: DeploymentNodeType },
9698
) => void
97-
toggleSourceInfo: (materialIndex: number, selectedCDDetail?: { id: number; type: DeploymentNodeType }) => void
98-
selectImage: (
99+
toggleSourceInfo?: (materialIndex: number, selectedCDDetail?: { id: number; type: DeploymentNodeType }) => void
100+
selectImage?: (
99101
index: number,
100102
materialType: string,
101103
selectedCDDetail?: { id: number; type: DeploymentNodeType },

0 commit comments

Comments
 (0)