@@ -27,6 +27,7 @@ import (
27
27
util4 "github.com/devtron-labs/common-lib/utils/k8s"
28
28
"github.com/devtron-labs/devtron/api/apiToken"
29
29
appStoreRestHandler "github.com/devtron-labs/devtron/api/appStore"
30
+ chartGroup2 "github.com/devtron-labs/devtron/api/appStore/chartGroup"
30
31
chartProvider "github.com/devtron-labs/devtron/api/appStore/chartProvider"
31
32
appStoreDeployment "github.com/devtron-labs/devtron/api/appStore/deployment"
32
33
appStoreDiscover "github.com/devtron-labs/devtron/api/appStore/discover"
@@ -64,7 +65,6 @@ import (
64
65
eClient "github.com/devtron-labs/devtron/client/events"
65
66
"github.com/devtron-labs/devtron/client/gitSensor"
66
67
"github.com/devtron-labs/devtron/client/grafana"
67
- jClient "github.com/devtron-labs/devtron/client/jira"
68
68
"github.com/devtron-labs/devtron/client/lens"
69
69
"github.com/devtron-labs/devtron/client/proxy"
70
70
"github.com/devtron-labs/devtron/client/telemetry"
@@ -88,10 +88,11 @@ import (
88
88
"github.com/devtron-labs/devtron/pkg/appClone/batch"
89
89
"github.com/devtron-labs/devtron/pkg/appStatus"
90
90
appStoreBean "github.com/devtron-labs/devtron/pkg/appStore/bean"
91
+ "github.com/devtron-labs/devtron/pkg/appStore/chartGroup"
92
+ repository4 "github.com/devtron-labs/devtron/pkg/appStore/chartGroup/repository"
91
93
appStoreDeploymentFullMode "github.com/devtron-labs/devtron/pkg/appStore/deployment/fullMode"
92
- repository4 "github.com/devtron-labs/devtron/pkg/appStore/deployment/repository"
93
94
"github.com/devtron-labs/devtron/pkg/appStore/deployment/service"
94
- appStoreDeploymentGitopsTool "github.com/devtron-labs/devtron/pkg/appStore/deployment/tool/gitops "
95
+ appStoreDeploymentGitopsTool "github.com/devtron-labs/devtron/pkg/appStore/deployment/tool"
95
96
"github.com/devtron-labs/devtron/pkg/appWorkflow"
96
97
"github.com/devtron-labs/devtron/pkg/attributes"
97
98
"github.com/devtron-labs/devtron/pkg/bulkAction"
@@ -106,7 +107,6 @@ import (
106
107
"github.com/devtron-labs/devtron/pkg/generateManifest"
107
108
"github.com/devtron-labs/devtron/pkg/git"
108
109
"github.com/devtron-labs/devtron/pkg/gitops"
109
- jira2 "github.com/devtron-labs/devtron/pkg/jira"
110
110
"github.com/devtron-labs/devtron/pkg/kubernetesResourceAuditLogs"
111
111
repository7 "github.com/devtron-labs/devtron/pkg/kubernetesResourceAuditLogs/repository"
112
112
"github.com/devtron-labs/devtron/pkg/notifier"
@@ -118,7 +118,6 @@ import (
118
118
"github.com/devtron-labs/devtron/pkg/pipeline/types"
119
119
"github.com/devtron-labs/devtron/pkg/plugin"
120
120
repository6 "github.com/devtron-labs/devtron/pkg/plugin/repository"
121
- "github.com/devtron-labs/devtron/pkg/projectManagementService/jira"
122
121
resourceGroup2 "github.com/devtron-labs/devtron/pkg/resourceGroup"
123
122
"github.com/devtron-labs/devtron/pkg/resourceQualifiers"
124
123
"github.com/devtron-labs/devtron/pkg/security"
@@ -261,10 +260,7 @@ func InitializeApp() (*App, error) {
261
260
wire .Bind (new (pipeline.CiCdPipelineOrchestrator ), new (* pipeline.CiCdPipelineOrchestratorImpl )),
262
261
pipelineConfig .NewMaterialRepositoryImpl ,
263
262
wire .Bind (new (pipelineConfig.MaterialRepository ), new (* pipelineConfig.MaterialRepositoryImpl )),
264
- router .NewMigrateDbRouterImpl ,
265
- wire .Bind (new (router.MigrateDbRouter ), new (* router.MigrateDbRouterImpl )),
266
- restHandler .NewMigrateDbRestHandlerImpl ,
267
- wire .Bind (new (restHandler.MigrateDbRestHandler ), new (* restHandler.MigrateDbRestHandlerImpl )),
263
+
268
264
util .NewChartTemplateServiceImpl ,
269
265
wire .Bind (new (util.ChartTemplateService ), new (* util.ChartTemplateServiceImpl )),
270
266
util .NewChartDeploymentServiceImpl ,
@@ -332,23 +328,8 @@ func InitializeApp() (*App, error) {
332
328
pipeline .NewPropertiesConfigServiceImpl ,
333
329
wire .Bind (new (pipeline.PropertiesConfigService ), new (* pipeline.PropertiesConfigServiceImpl )),
334
330
335
- router .NewProjectManagementRouterImpl ,
336
- wire .Bind (new (router.ProjectManagementRouter ), new (* router.ProjectManagementRouterImpl )),
337
-
338
- restHandler .NewJiraRestHandlerImpl ,
339
- wire .Bind (new (restHandler.JiraRestHandler ), new (* restHandler.JiraRestHandlerImpl )),
340
-
341
- jira2 .NewProjectManagementServiceImpl ,
342
- wire .Bind (new (jira2.ProjectManagementService ), new (* jira2.ProjectManagementServiceImpl )),
343
-
344
- jira .NewAccountServiceImpl ,
345
- wire .Bind (new (jira.AccountService ), new (* jira.AccountServiceImpl )),
346
-
347
331
util .NewHttpClient ,
348
332
349
- jClient .NewJiraClientImpl ,
350
- wire .Bind (new (jClient.JiraClient ), new (* jClient.JiraClientImpl )),
351
-
352
333
eClient .NewEventRESTClientImpl ,
353
334
wire .Bind (new (eClient.EventClient ), new (* eClient.EventRESTClientImpl )),
354
335
@@ -357,11 +338,6 @@ func InitializeApp() (*App, error) {
357
338
eClient .NewEventSimpleFactoryImpl ,
358
339
wire .Bind (new (eClient.EventFactory ), new (* eClient.EventSimpleFactoryImpl )),
359
340
360
- repository .NewJiraAccountRepositoryImpl ,
361
- wire .Bind (new (repository.JiraAccountRepository ), new (* repository.JiraAccountRepositoryImpl )),
362
- jira .NewAccountValidatorImpl ,
363
- wire .Bind (new (jira.AccountValidator ), new (* jira.AccountValidatorImpl )),
364
-
365
341
repository .NewCiArtifactRepositoryImpl ,
366
342
wire .Bind (new (repository.CiArtifactRepository ), new (* repository.CiArtifactRepositoryImpl )),
367
343
pipeline .NewWebhookServiceImpl ,
@@ -405,15 +381,6 @@ func InitializeApp() (*App, error) {
405
381
//ArgoUtil.NewRepositoryService,
406
382
//wire.Bind(new(ArgoUtil.RepositoryService), new(ArgoUtil.RepositoryServiceImpl)),
407
383
408
- pipelineConfig .NewDbMigrationConfigRepositoryImpl ,
409
- wire .Bind (new (pipelineConfig.DbMigrationConfigRepository ), new (* pipelineConfig.DbMigrationConfigRepositoryImpl )),
410
- pipeline .NewDbConfigService ,
411
- wire .Bind (new (pipeline.DbConfigService ), new (* pipeline.DbConfigServiceImpl )),
412
-
413
- repository .NewDbConfigRepositoryImpl ,
414
- wire .Bind (new (repository.DbConfigRepository ), new (* repository.DbConfigRepositoryImpl )),
415
- pipeline .NewDbMogrationService ,
416
- wire .Bind (new (pipeline.DbMigrationService ), new (* pipeline.DbMigrationServiceImpl )),
417
384
//ArgoUtil.NewClusterServiceImpl,
418
385
//wire.Bind(new(ArgoUtil.ClusterService), new(ArgoUtil.ClusterServiceImpl)),
419
386
pipeline .GetEcrConfig ,
@@ -626,23 +593,18 @@ func InitializeApp() (*App, error) {
626
593
wire .Bind (new (repository4.ChartGroupReposotory ), new (* repository4.ChartGroupReposotoryImpl )),
627
594
repository4 .NewChartGroupEntriesRepositoryImpl ,
628
595
wire .Bind (new (repository4.ChartGroupEntriesRepository ), new (* repository4.ChartGroupEntriesRepositoryImpl )),
629
- service .NewChartGroupServiceImpl ,
630
- wire .Bind (new (service .ChartGroupService ), new (* service .ChartGroupServiceImpl )),
631
- restHandler .NewChartGroupRestHandlerImpl ,
632
- wire .Bind (new (restHandler .ChartGroupRestHandler ), new (* restHandler .ChartGroupRestHandlerImpl )),
633
- router .NewChartGroupRouterImpl ,
634
- wire .Bind (new (router .ChartGroupRouter ), new (* router .ChartGroupRouterImpl )),
596
+ chartGroup .NewChartGroupServiceImpl ,
597
+ wire .Bind (new (chartGroup .ChartGroupService ), new (* chartGroup .ChartGroupServiceImpl )),
598
+ chartGroup2 .NewChartGroupRestHandlerImpl ,
599
+ wire .Bind (new (chartGroup2 .ChartGroupRestHandler ), new (* chartGroup2 .ChartGroupRestHandlerImpl )),
600
+ chartGroup2 .NewChartGroupRouterImpl ,
601
+ wire .Bind (new (chartGroup2 .ChartGroupRouter ), new (* chartGroup2 .ChartGroupRouterImpl )),
635
602
repository4 .NewChartGroupDeploymentRepositoryImpl ,
636
603
wire .Bind (new (repository4.ChartGroupDeploymentRepository ), new (* repository4.ChartGroupDeploymentRepositoryImpl )),
637
604
638
605
commonService .NewCommonServiceImpl ,
639
606
wire .Bind (new (commonService.CommonService ), new (* commonService.CommonServiceImpl )),
640
607
641
- router .NewTestSuitRouterImpl ,
642
- wire .Bind (new (router.TestSuitRouter ), new (* router.TestSuitRouterImpl )),
643
- restHandler .NewTestSuitRestHandlerImpl ,
644
- wire .Bind (new (restHandler.TestSuitRestHandler ), new (* restHandler.TestSuitRestHandlerImpl )),
645
-
646
608
router .NewImageScanRouterImpl ,
647
609
wire .Bind (new (router.ImageScanRouter ), new (* router.ImageScanRouterImpl )),
648
610
restHandler .NewImageScanRestHandlerImpl ,
0 commit comments