Skip to content

Commit 9672e0f

Browse files
committed
Merge branch 'develop' of github.com:devtron-labs/devtron into pg-enable-metrics
# Conflicts: # env_gen.md # go.mod # go.sum # vendor/modules.txt
2 parents 96a9a3b + b758948 commit 9672e0f

File tree

167 files changed

+6254
-2899
lines changed

Some content is hidden

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

167 files changed

+6254
-2899
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "🐛 Bug Report"
22
description: "Submit a bug report to help us improve"
33
title: "Bug: "
4-
labels: [bug]
4+
labels: ["bug", "needs-triage"]
55
assignees: ["prakarsh-dt","vikramdevtron"]
66
projects: ["Devtron Features Prioritization"]
77
body:

.github/ISSUE_TEMPLATE/documentation.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "📚 Documentation"
22
description: "Report an issue related to documentation"
33
assignees: ["ashokdevtron","prakarsh-dt"]
44
title: "Doc: "
5-
labels: [documentation]
5+
labels: ["documentation", "needs-triage"]
66
projects: ["Devtron Features Prioritization"]
77
body:
88
- type: markdown

.github/ISSUE_TEMPLATE/feature.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 🚀 Feature
22
description: "Submit a proposal for a new feature"
33
title: "Feature: "
4-
labels: ["enhancement"]
4+
labels: ["enhancement", "needs-triage"]
55
assignees: ["prakarsh-dt","nishant-d","abhibhaw"]
66
projects: ["Devtron Features Prioritization"]
77
body:

.github/semantic.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ types:
1111
- doc
1212
- release
1313
- misc
14+
- sync

.github/workflows/pr-issue-validator.yaml

+18-16
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
- 'main'
1212
- 'release-**'
1313
- 'develop'
14+
- 'hotfix-v0**'
1415
# paths-ignore:
1516
# - 'docs/**'
1617
# - '.github/'
@@ -53,7 +54,7 @@ jobs:
5354
5455
set -x
5556
# Skip validation for documentation or chore PRs
56-
if [[ "$TITLE" =~ ^(doc:|docs:|chore:|misc:|Release:|release:) ]]; then
57+
if [[ "$TITLE" =~ ^(doc:|docs:|chore:|misc:|Release:|release:|Sync:|sync:) ]]; then
5758
echo "Skipping validation for docs/chore PR."
5859
echo "PR NUMBER-: $PRNUM "
5960
gh pr edit $PRNUM --remove-label "PR:Issue-verification-failed"
@@ -140,32 +141,33 @@ jobs:
140141
--header "authorization: Bearer ${{ secrets.GH_PR_VALIDATOR_TOKEN }}" \
141142
"$issue_api_url"| jq '.state'|tr -d \")
142143
fi
143-
echo "Issue Status: $issue_status"
144-
144+
echo "Issue Number : $issue_num Status: $issue_status"
145145
# Check if the issue is still open.
146-
if [[ "$issue_status" == open ]]; then
147-
echo "Issue #$issue_num is opened."
146+
# if [[ "$issue_status" == open ]]; then
147+
# echo "Issue #$issue_num is opened."
148148
if [[ $forked == true ]]; then
149149
echo "PR:Ready-to-Review, exiting gracefully"
150150
exit 0
151151
fi
152152
# Remove the 'Issue-verification-failed' label (if present) and add 'Ready-to-Review'.
153153
gh pr edit $PRNUM --remove-label "PR:Issue-verification-failed"
154154
gh pr edit $PRNUM --add-label "PR:Ready-to-Review"
155-
else
156-
echo "Issue #$issue_num is closed. Please link an open issue to proceed."
157-
if [[ $forked == true ]]; then
158-
echo "PR:Ready-to-Review, exiting gracefully"
159-
exit 0
160-
fi
155+
echo "PR:Ready-to-Review, exiting gracefully"
156+
exit 0
157+
# else
158+
# echo "Issue #$issue_num is closed. Please link an open issue to proceed."
159+
# if [[ $forked == true ]]; then
160+
# echo "PR:Ready-to-Review, exiting gracefully"
161+
# exit 0
162+
# fi
161163
# Add a comment to the PR indicating the issue is not linked correctly.
162-
gh pr comment $PRNUM --body "PR is linked to a closed issue. Please link an open issue to proceed."
164+
# gh pr comment $PRNUM --body "PR is linked to a closed issue. Please link an open issue to proceed."
163165

164166
# Add the 'Issue-verification-failed' label and remove 'Ready-to-Review'.
165-
gh pr edit $PRNUM --add-label "PR:Issue-verification-failed"
166-
gh pr edit $PRNUM --remove-label "PR:Ready-to-Review"
167-
exit 1
168-
fi
167+
# gh pr edit $PRNUM --add-label "PR:Issue-verification-failed"
168+
# gh pr edit $PRNUM --remove-label "PR:Ready-to-Review"
169+
# exit 1
170+
#fi
169171
else
170172
echo "Issue not found. Invalid URL or issue number."
171173
# Add a comment to the PR indicating the issue is not linked correctly.

App.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ package main
1919
import (
2020
"context"
2121
"crypto/tls"
22+
"errors"
2223
"fmt"
2324
"github.com/devtron-labs/common-lib/middlewares"
2425
pubsub "github.com/devtron-labs/common-lib/pubsub-lib"
@@ -137,7 +138,7 @@ func (app *App) Start() {
137138
err = server.ListenAndServe()
138139
}
139140
//err := http.ListenAndServe(fmt.Sprintf(":%d", port), auth.Authorizer(app.Enforcer, app.sessionManager)(app.MuxRouter.Router))
140-
if err != nil {
141+
if err != nil && !errors.Is(err, http.ErrServerClosed) {
141142
app.Logger.Errorw("error in startup", "err", err)
142143
os.Exit(2)
143144
}

CHANGELOG/release-notes-v1.1.0.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
## v1.1.0
2+
3+
## Bugs
4+
- fix: Changes in labels of ref chart 4.20 (#6178)
5+
- fix: Fix cd-trigger-plugin (#6203)
6+
- fix: Bulk edit fix for global override (#6193)
7+
- fix: Panic handling for get workflow logs (#6168)
8+
- fix: User permissions not merging on same environments (#6167)
9+
- fix: Secret masking fix (#6136)
10+
- fix: Delete git repo without pipeline config (#6148)
11+
- fix: All modules installation fix (#6140)
12+
- fix: Update sql fix buildx (#6096)
13+
## Enhancements
14+
- feat: Support to trigger with same hash in CD trigger plugin (#6205)
15+
- feat: Patch merge strategy for cm cs and dt (#6115)
16+
- feat: Adds Github actions to add the label using slash command (#6126)
17+
- feat: Fetch all non deprecated plugins in list (#6135)
18+
- feat: Node k8s permissions (#6123)
19+
- feat: App details refactoring (#6104)
20+
## Others
21+
- misc: Main sync develop 20dec (#6210)
22+
- misc: migration for mandatory tag (#6208)
23+
- chore: Read service for team (#6201)
24+
- chore: Oss ent triggerService changes (#6189)
25+
- misc: Release candidate v0.25.0 (#6194)
26+
- chore: Panic fix (#6188)
27+
- chore: Panic fix installed app read service (#6185)
28+
- chore: Runtime params variable refactorings (#6183)
29+
- misc: Asset for plugin (#6184)
30+
- chore: Updating deployment status start and end time (#6171)
31+
- misc: Main sync develop 16dec (#6182)
32+
- chore: Adding logs in deployment trigger flow (#6180)
33+
- misc: Added cd workflow runner read service (#6175)
34+
- misc: Added the token that contains the permissions to read the org members (#6164)
35+
- misc: Refactor-plugin-images migrations (#6108)
36+
- misc: Addign new plugins images (#6145)
37+
- misc: Updated authenticator to c3254b79e386 (#6144)
38+
- misc: Adding pr validator for fork prs as gh command will not work (#6143)
39+
- misc: Adding validation for public repo (#6137)
40+
- misc: Update pull_request_template.md (#6134)
41+
- misc: Authenticator panic fix (#6131)
42+
- misc: Bulk update cm/cs name reference update fix (#6130)
43+
- misc: Cluster, project, environment read and beans (#6067)
44+
- chore: Use certificates data when InsecureSkipTLSVerify is false for a cluster in case of external run CI (#6100)
45+
- misc: main sync develop nov18 (#6107)
46+
- chore: Implemented Rbac enforcer in batch (#6103)
47+
- misc: Update pr-issue-validator.yaml (#6086)
48+
- misc: Sql query fixes (#6097)
49+
- misc: Kubecon 2024 oss sync (#6094)
50+
- chore: Depandabot fixes (#6070)
51+
- misc: Handler error while while helm deployment (#6082)
52+
53+

Wire.go

+11-9
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ import (
4646
"github.com/devtron-labs/devtron/api/infraConfig"
4747
"github.com/devtron-labs/devtron/api/k8s"
4848
"github.com/devtron-labs/devtron/api/module"
49+
"github.com/devtron-labs/devtron/api/resourceScan"
4950
"github.com/devtron-labs/devtron/api/restHandler"
5051
"github.com/devtron-labs/devtron/api/restHandler/app/appInfo"
5152
appList2 "github.com/devtron-labs/devtron/api/restHandler/app/appList"
@@ -81,9 +82,11 @@ import (
8182
"github.com/devtron-labs/devtron/client/argocdServer/certificate"
8283
cluster2 "github.com/devtron-labs/devtron/client/argocdServer/cluster"
8384
"github.com/devtron-labs/devtron/client/argocdServer/connection"
85+
"github.com/devtron-labs/devtron/client/argocdServer/repoCredsK8sClient"
8486
repocreds "github.com/devtron-labs/devtron/client/argocdServer/repocreds"
8587
repository2 "github.com/devtron-labs/devtron/client/argocdServer/repository"
8688
session2 "github.com/devtron-labs/devtron/client/argocdServer/session"
89+
"github.com/devtron-labs/devtron/client/argocdServer/version"
8790
"github.com/devtron-labs/devtron/client/cron"
8891
"github.com/devtron-labs/devtron/client/dashboard"
8992
eClient "github.com/devtron-labs/devtron/client/events"
@@ -116,7 +119,6 @@ import (
116119
repository9 "github.com/devtron-labs/devtron/pkg/appStore/installedApp/repository"
117120
deployment3 "github.com/devtron-labs/devtron/pkg/appStore/installedApp/service/FullMode/deployment"
118121
"github.com/devtron-labs/devtron/pkg/appWorkflow"
119-
"github.com/devtron-labs/devtron/pkg/argoRepositoryCreds"
120122
"github.com/devtron-labs/devtron/pkg/asyncProvider"
121123
"github.com/devtron-labs/devtron/pkg/attributes"
122124
"github.com/devtron-labs/devtron/pkg/build"
@@ -166,7 +168,6 @@ import (
166168
workflow3 "github.com/devtron-labs/devtron/pkg/workflow"
167169
"github.com/devtron-labs/devtron/pkg/workflow/dag"
168170
util2 "github.com/devtron-labs/devtron/util"
169-
"github.com/devtron-labs/devtron/util/argo"
170171
cron2 "github.com/devtron-labs/devtron/util/cron"
171172
"github.com/devtron-labs/devtron/util/rbac"
172173
"github.com/google/wire"
@@ -211,6 +212,7 @@ func InitializeApp() (*App, error) {
211212
imageTagging.WireSet,
212213
devtronResource.DevtronResourceWireSet,
213214
policyGovernance.PolicyGovernanceWireSet,
215+
resourceScan.ScanningResultWireSet,
214216

215217
// -------wireset end ----------
216218
// -------
@@ -447,8 +449,8 @@ func InitializeApp() (*App, error) {
447449
wire.Bind(new(repository8.ImageTaggingRepository), new(*repository8.ImageTaggingRepositoryImpl)),
448450
imageTagging.NewImageTaggingServiceImpl,
449451
wire.Bind(new(imageTagging.ImageTaggingService), new(*imageTagging.ImageTaggingServiceImpl)),
450-
argocdServer.NewVersionServiceImpl,
451-
wire.Bind(new(argocdServer.VersionService), new(*argocdServer.VersionServiceImpl)),
452+
version.NewVersionServiceImpl,
453+
wire.Bind(new(version.VersionService), new(*version.VersionServiceImpl)),
452454

453455
router.NewGitProviderRouterImpl,
454456
wire.Bind(new(router.GitProviderRouter), new(*router.GitProviderRouterImpl)),
@@ -799,9 +801,9 @@ func InitializeApp() (*App, error) {
799801

800802
connection.NewArgoCDConnectionManagerImpl,
801803
wire.Bind(new(connection.ArgoCDConnectionManager), new(*connection.ArgoCDConnectionManagerImpl)),
802-
argo.NewArgoUserServiceImpl,
803-
wire.Bind(new(argo.ArgoUserService), new(*argo.ArgoUserServiceImpl)),
804-
//util2.GetEnvironmentVariables,
804+
//argo.NewArgoUserServiceImpl,
805+
//wire.Bind(new(argo.ArgoUserService), new(*argo.ArgoUserServiceImpl)),
806+
////util2.GetEnvironmentVariables,
805807
// AuthWireSet,
806808

807809
cron.NewCdApplicationStatusUpdateHandlerImpl,
@@ -948,8 +950,8 @@ func InitializeApp() (*App, error) {
948950
common.NewDeploymentConfigServiceImpl,
949951
wire.Bind(new(common.DeploymentConfigService), new(*common.DeploymentConfigServiceImpl)),
950952

951-
argoRepositoryCreds.NewRepositorySecret,
952-
wire.Bind(new(argoRepositoryCreds.RepositorySecret), new(*argoRepositoryCreds.RepositorySecretImpl)),
953+
repoCredsK8sClient.NewRepositorySecret,
954+
wire.Bind(new(repoCredsK8sClient.RepositoryCreds), new(*repoCredsK8sClient.RepositorySecretImpl)),
953955

954956
repocreds.NewServiceClientImpl,
955957
wire.Bind(new(repocreds.ServiceClient), new(*repocreds.ServiceClientImpl)),

api/appStore/InstalledAppRestHandler.go

+10-15
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,21 @@ import (
2121
"encoding/json"
2222
"errors"
2323
"fmt"
24+
bean2 "github.com/devtron-labs/devtron/api/bean/AppView"
2425
client "github.com/devtron-labs/devtron/api/helm-app/gRPC"
2526
"github.com/devtron-labs/devtron/pkg/appStore/installedApp/service/FullMode"
2627
"github.com/devtron-labs/devtron/pkg/appStore/installedApp/service/FullMode/deploymentTypeChange"
2728
"github.com/devtron-labs/devtron/pkg/appStore/installedApp/service/FullMode/resource"
2829
util3 "github.com/devtron-labs/devtron/pkg/appStore/util"
2930
"github.com/devtron-labs/devtron/pkg/bean"
31+
"github.com/devtron-labs/devtron/pkg/cluster/read"
3032
"gopkg.in/go-playground/validator.v9"
3133
"net/http"
3234
"reflect"
3335
"strconv"
3436
"strings"
3537
"time"
3638

37-
bean2 "github.com/devtron-labs/devtron/api/bean"
3839
"github.com/devtron-labs/devtron/api/restHandler/common"
3940
"github.com/devtron-labs/devtron/client/argocdServer/application"
4041
"github.com/devtron-labs/devtron/client/cron"
@@ -50,7 +51,6 @@ import (
5051
"github.com/devtron-labs/devtron/pkg/auth/user"
5152
"github.com/devtron-labs/devtron/pkg/cluster"
5253
"github.com/devtron-labs/devtron/util"
53-
"github.com/devtron-labs/devtron/util/argo"
5454
"github.com/devtron-labs/devtron/util/rbac"
5555
"github.com/devtron-labs/devtron/util/response"
5656
"github.com/go-pg/pg"
@@ -88,11 +88,11 @@ type InstalledAppRestHandlerImpl struct {
8888
appStoreDeploymentService service.AppStoreDeploymentService
8989
appStoreDeploymentDBService service.AppStoreDeploymentDBService
9090
helmAppClient client.HelmAppClient
91-
argoUserService argo.ArgoUserService
9291
cdApplicationStatusUpdateHandler cron.CdApplicationStatusUpdateHandler
9392
installedAppRepository repository.InstalledAppRepository
9493
appCrudOperationService app2.AppCrudOperationService
9594
installedAppDeploymentTypeChangeService deploymentTypeChange.InstalledAppDeploymentTypeChangeService
95+
clusterReadService read.ClusterReadService
9696
}
9797

9898
func NewInstalledAppRestHandlerImpl(Logger *zap.SugaredLogger, userAuthService user.UserService,
@@ -102,11 +102,13 @@ func NewInstalledAppRestHandlerImpl(Logger *zap.SugaredLogger, userAuthService u
102102
chartGroupService chartGroup.ChartGroupService, validator *validator.Validate, clusterService cluster.ClusterService,
103103
acdServiceClient application.ServiceClient, appStoreDeploymentService service.AppStoreDeploymentService,
104104
appStoreDeploymentDBService service.AppStoreDeploymentDBService,
105-
helmAppClient client.HelmAppClient, argoUserService argo.ArgoUserService,
105+
helmAppClient client.HelmAppClient,
106+
106107
cdApplicationStatusUpdateHandler cron.CdApplicationStatusUpdateHandler,
107108
installedAppRepository repository.InstalledAppRepository,
108109
appCrudOperationService app2.AppCrudOperationService,
109-
installedAppDeploymentTypeChangeService deploymentTypeChange.InstalledAppDeploymentTypeChangeService) *InstalledAppRestHandlerImpl {
110+
installedAppDeploymentTypeChangeService deploymentTypeChange.InstalledAppDeploymentTypeChangeService,
111+
clusterReadService read.ClusterReadService) *InstalledAppRestHandlerImpl {
110112
return &InstalledAppRestHandlerImpl{
111113
Logger: Logger,
112114
userAuthService: userAuthService,
@@ -122,11 +124,11 @@ func NewInstalledAppRestHandlerImpl(Logger *zap.SugaredLogger, userAuthService u
122124
appStoreDeploymentService: appStoreDeploymentService,
123125
appStoreDeploymentDBService: appStoreDeploymentDBService,
124126
helmAppClient: helmAppClient,
125-
argoUserService: argoUserService,
126127
cdApplicationStatusUpdateHandler: cdApplicationStatusUpdateHandler,
127128
installedAppRepository: installedAppRepository,
128129
appCrudOperationService: appCrudOperationService,
129130
installedAppDeploymentTypeChangeService: installedAppDeploymentTypeChangeService,
131+
clusterReadService: clusterReadService,
130132
}
131133
}
132134
func (handler *InstalledAppRestHandlerImpl) FetchAppOverview(w http.ResponseWriter, r *http.Request) {
@@ -550,7 +552,7 @@ func (impl *InstalledAppRestHandlerImpl) DefaultComponentInstallation(w http.Res
550552
return
551553
}
552554
impl.Logger.Errorw("request payload, DefaultComponentInstallation", "clusterId", clusterId)
553-
cluster, err := impl.clusterService.FindById(clusterId)
555+
cluster, err := impl.clusterReadService.FindById(clusterId)
554556
if err != nil {
555557
impl.Logger.Errorw("service err, DefaultComponentInstallation", "error", err, "clusterId", clusterId)
556558
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
@@ -648,13 +650,6 @@ func (handler *InstalledAppRestHandlerImpl) DeleteArgoInstalledAppWithNonCascade
648650
return
649651
}
650652
//rback block ends here
651-
acdToken, err := handler.argoUserService.GetLatestDevtronArgoCdUserToken()
652-
if err != nil {
653-
handler.Logger.Errorw("error in getting acd token", "err", err)
654-
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)
655-
return
656-
}
657-
ctx := context.WithValue(r.Context(), "token", acdToken)
658653
request := &appStoreBean.InstallAppVersionDTO{}
659654
request.InstalledAppId = installedAppId
660655
request.AppName = installedApp.AppName
@@ -668,7 +663,7 @@ func (handler *InstalledAppRestHandlerImpl) DeleteArgoInstalledAppWithNonCascade
668663
request.Namespace = installedApp.Namespace
669664
request.AcdPartialDelete = true
670665

671-
request, err = handler.appStoreDeploymentService.DeleteInstalledApp(ctx, request)
666+
request, err = handler.appStoreDeploymentService.DeleteInstalledApp(r.Context(), request)
672667
if err != nil {
673668
handler.Logger.Errorw("service err, DeleteInstalledApp", "err", err, "installAppId", installedAppId)
674669
common.WriteJsonResp(w, err, nil, http.StatusInternalServerError)

0 commit comments

Comments
 (0)