Skip to content

Commit ac22eb6

Browse files
vikramdevtroniamayushmgireesh-naidukamal-devtronkirandevtn
authored
misc: Main sync rc19 (#5953)
* fix: app update migration (#5903) * wip: adding app name check * wip * wip * wip * moving migration to code * wip: adding app name in log * wip: moving sql logic to code * pg no rows handling * adding db migration call * fixing fetch app query * wip: adding pg multiple rows handling * audit log update * fix: nil ptr fix in copying extraEnvVars * feat: Docker lint plugin (#5694) * added up script for docker linit plugin * rename of script file * docker lint down script * changes in docker lint * hadolint image * change in name of plugin * changes in down script * chnages in docker lint * chnages in down script * change in hadolint image * rename down script file * renaming sql script * feat: Added Devtron CI Trigger v1.1.0 (#5934) * Create 028901_019_devtron_ci_trigger_v1_1.down.sql * Create 028901_019_devtron_ci_trigger_v1_1.up.sql * Update 028901_019_devtron_ci_trigger_v1_1.up.sql --------- Co-authored-by: Prakarsh <[email protected]> * renaming docker lint script file (#5937) * fix: err handling for configmap access * release: PR for v0.7.3 (#5942) * Update Chart.yaml * Update devtron-bom.yaml * Update values.yaml * Update devtron-installer.yaml * Update installation-script * Update version.txt * Update devtron.yaml * Update releasenotes.md * Update devtron-bom.yaml * Update values.yaml * Update releasenotes.md * Update releasenotes.md * Updated release-notes files * Update releasenotes.md * Update release.txt * Updated release-notes files * Update release-notes-v0.7.2.md --------- Co-authored-by: ReleaseBot <[email protected]> --------- Co-authored-by: iamayushm <[email protected]> Co-authored-by: Gireesh Naidu <[email protected]> Co-authored-by: Gireesh Naidu <[email protected]> Co-authored-by: kamal-devtron <[email protected]> Co-authored-by: Kiran <[email protected]> Co-authored-by: Prakarsh <[email protected]> Co-authored-by: Pawan Mehta <[email protected]> Co-authored-by: ReleaseBot <[email protected]>
1 parent ea4254c commit ac22eb6

16 files changed

+171
-138
lines changed

CHANGELOG/release-notes-v0.7.3.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## v0.7.3
2+
3+
4+
5+
## Bugs
6+
- fix: Builds set to auto not getting triggered (#5925)
7+
- fix: User Rbac Fixes (#5940)

assets/hadolint-icon.png

12.5 KB
Loading

charts/devtron/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: devtron-operator
3-
appVersion: 0.7.2
3+
appVersion: 0.7.3
44
description: Chart to configure and install Devtron. Devtron is a Kubernetes Orchestration system.
55
keywords:
66
- Devtron
@@ -11,7 +11,7 @@ keywords:
1111
- argocd
1212
- Hyperion
1313
engine: gotpl
14-
version: 0.22.74
14+
version: 0.22.75
1515
sources:
1616
- https://github.com/devtron-labs/charts
1717
dependencies:

charts/devtron/devtron-bom.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ global:
1010
containerRegistry: "quay.io/devtron"
1111
extraManifests: []
1212
installer:
13-
release: "v0.7.2"
13+
release: "v0.7.3"
1414
registry: ""
1515
image: "inception"
1616
tag: "473deaa4-185-21582"
@@ -38,8 +38,8 @@ components:
3838
imagePullPolicy: IfNotPresent
3939
devtron:
4040
registry: ""
41-
image: "hyperion:3f68456b-280-25566"
42-
cicdImage: "devtron:3f68456b-434-25567"
41+
image: "hyperion:e17c52eb-280-25812"
42+
cicdImage: "devtron:e17c52eb-434-25813"
4343
imagePullPolicy: IfNotPresent
4444
customOverrides: {}
4545
ciRunner:

charts/devtron/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ global:
2424
extraManifests: []
2525
installer:
2626
repo: "devtron-labs/devtron"
27-
release: "v0.7.2"
27+
release: "v0.7.3"
2828
registry: ""
2929
image: inception
3030
tag: 473deaa4-185-21582
@@ -81,8 +81,8 @@ components:
8181
imagePullPolicy: IfNotPresent
8282
devtron:
8383
registry: ""
84-
image: "hyperion:3f68456b-280-25566"
85-
cicdImage: "devtron:3f68456b-434-25567"
84+
image: "hyperion:e17c52eb-280-25812"
85+
cicdImage: "devtron:e17c52eb-434-25813"
8686
imagePullPolicy: IfNotPresent
8787
customOverrides: {}
8888
serviceMonitor:

client/telemetry/TelemetryEventClient.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,10 @@ func (impl *TelemetryEventClientImpl) SendTelemetryDashboardAccessEvent() error
601601
return err
602602
}
603603
cm, err := impl.K8sUtil.GetConfigMap(impl.aCDAuthConfig.ACDConfigMapNamespace, DevtronUniqueClientIdConfigMap, client)
604+
if err != nil {
605+
impl.logger.Errorw("DashboardAccessed EventForTelemetry,failed to get DevtronUniqueClientIdConfigMap", "error", err)
606+
return err
607+
}
604608
datamap := cm.Data
605609

606610
accessEventValue, installEventKeyExists := datamap[UIEventKey]
@@ -667,6 +671,10 @@ func (impl *TelemetryEventClientImpl) SendTelemetryDashboardLoggedInEvent() erro
667671
return err
668672
}
669673
cm, err := impl.K8sUtil.GetConfigMap(impl.aCDAuthConfig.ACDConfigMapNamespace, DevtronUniqueClientIdConfigMap, client)
674+
if err != nil {
675+
impl.logger.Errorw("DashboardLoggedIn EventForTelemetry,failed to get DevtronUniqueClientIdConfigMap", "error", err)
676+
return err
677+
}
670678
datamap := cm.Data
671679

672680
accessEventValue, installEventKeyExists := datamap[UIEventKey]

manifests/install/devtron-installer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ metadata:
44
name: installer-devtron
55
namespace: devtroncd
66
spec:
7-
url: https://raw.githubusercontent.com/devtron-labs/devtron/v0.7.2/manifests/installation-script
7+
url: https://raw.githubusercontent.com/devtron-labs/devtron/v0.7.3/manifests/installation-script

manifests/installation-script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LTAG="v0.7.2";
1+
LTAG="v0.7.3";
22
REPO_RAW_URL="https://raw.githubusercontent.com/devtron-labs/devtron/";
33

44
log("executed devtron setup installation");

manifests/release.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
stable -1 v0.7.2
1+
stable -1 v0.7.3

manifests/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.7.1
1+
v0.7.3

0 commit comments

Comments
 (0)