Skip to content

Commit b5785a5

Browse files
prakarsh-dtDivya Bhushandheeth
authored
RELEASE: PR for v0.4.5 (#1745)
* Updated latest image of dashboard in installer * Updated latest image of devtron in installer * Updated latest image of hyperion in installer * docs: Editing the template notes (#1726) * docs: Editing the template notes * Updating notes.txt * Removing the repeated line in notes.txt * Update NOTES.txt * Update NOTES.txt * Fixed NOTES.txt file (#1756) Co-authored-by: Divya Bhushan <[email protected]> Co-authored-by: Pawan Kumar <[email protected]>
1 parent 6560022 commit b5785a5

File tree

10 files changed

+48
-39
lines changed

10 files changed

+48
-39
lines changed

charts/devtron/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: devtron-operator
2-
appVersion: 0.4.4
2+
appVersion: 0.4.5
33
description: Chart to configure and install Devtron. Devtron is a Kubernetes Orchestration system.
44
keywords:
55
- Devtron
@@ -10,7 +10,7 @@ keywords:
1010
- argocd
1111
- Hyperion
1212
engine: gotpl
13-
version: 0.22.7
13+
version: 0.22.8
1414
sources:
1515
- https://github.com/devtron-labs/charts
1616
maintainers:

charts/devtron/devtron-bom.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
installer:
2-
release: "v0.4.4"
2+
release: "v0.4.5"
33
image: "quay.io/devtron/inception"
44
tag: "acb623ff-185-7117"
55

66
components:
77
dashboard:
8-
image: "quay.io/devtron/dashboard:e46df8f6-240-8703"
8+
image: "quay.io/devtron/dashboard:8c3c47c8-240-8803"
99
devtron:
10-
image: "quay.io/devtron/hyperion:38336f15-282-8704"
10+
image: "quay.io/devtron/hyperion:702ffd2c-280-8805"
1111
argocdDexServer:
1212
image: "quay.io/dexidp/dex:v2.25.0"
1313
kubelink:
@@ -20,7 +20,7 @@ components:
2020
envVars:
2121
devtron:
2222
GIT_BRANCH: "main"
23-
GIT_HASH: "38336f1533c3e77fdd2988e43d4b1056e0e40e03"
23+
GIT_HASH: "702ffd2c7814e33f49e0dbbbebc6e18a6645e5d3"
2424
casbin:
2525
GIT_BRANCH: "main"
26-
GIT_HASH: "38336f1533c3e77fdd2988e43d4b1056e0e40e03"
26+
GIT_HASH: "702ffd2c7814e33f49e0dbbbebc6e18a6645e5d3"

charts/devtron/templates/NOTES.txt

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,54 @@
11

2-
1. Run the following command to get the default admin password. Default username is admin
2+
1. Run the following command to get the password for the default admin user:
33

44
kubectl -n devtroncd get secret devtron-secret -o jsonpath='{.data.ACD_PASSWORD}' | base64 -d
5-
{{- if $.Values.components.devtron.ingress.enabled }}
65

7-
2. Your devtron dashboard will be available for http on http://{{ .Values.components.devtron.ingress.host }}/dashboard or for https on https://{{ .Values.components.devtron.ingress.host }}/dashboard
6+
{{- if $.Values.components }}
7+
{{- if $.Values.components.devtron }}
8+
{{- if $.Values.components.devtron.ingress }}
9+
{{- if $.Values.components.devtron.ingress.enabled }}
10+
2. The Devtron dashboard URL for
811

9-
{{- else if eq $.Values.components.devtron.service.type "LoadBalancer" }}
12+
- http is: http://{{ .Values.components.devtron.ingress.host }}/dashboard
13+
- https is https://{{ .Values.components.devtron.ingress.host }}/dashboard
1014

11-
2. You can get url of devtron dashboard by the following command
15+
{{- end }}
16+
{{- end }}
17+
{{- end }}
1218

13-
kubectl get svc -n devtroncd devtron-service -o jsonpath='{.status.loadBalancer.ingress}'
19+
{{- else if eq $.Values.components.devtron.service.type "LoadBalancer" }}
20+
2. Run the following command to get the dashboard URL for the service type:
21+
LoadBalancer
22+
23+
kubectl get svc -n devtroncd devtron-service -o jsonpath='{.status.loadBalancer.ingress}'
24+
1425
{{- else if eq $.Values.components.devtron.service.type "NodePort" }}
15-
16-
2. You can get the devtron dashboard by following the steps mentioned below
26+
2. Run the following commands to get the dashboard URL for the service type:
27+
NodePort
1728

1829
a. export nodeport=$(kubectl get svc -n devtroncd devtron-service -o jsonpath="{.spec.ports[0].nodePort}")
1930

20-
b. Run the following command to get Devtron dashboard URL
21-
22-
echo http://HOST_IP:$nodeport/dashboard
23-
24-
Make sure that your security settings allow incoming connection to your Host machine on the nodeport mentioned.
25-
31+
b. Run the following command to get Devtron dashboard URL: echo http://HOST_IP:$nodeport/dashboard
2632

27-
{{- else if eq $.Values.components.devtron.service.type "ClusterIP" }}
33+
Make sure that your security settings allow incoming connection to your Host machine on the nodeport mentioned.
2834

29-
2. You can get the devtron dashboard by the following command
35+
{{- else if eq $.Values.components.devtron.service.type "ClusterIP" }}
36+
2. Run the following commands to get the dashboard URL for the service type:
37+
ClusterIP
3038

31-
kubectl get svc -n devtroncd devtron-service
39+
kubectl get svc -n devtroncd devtron-service
3240

3341
You can port-forward devtron-service in namespace devtroncd to access devtron dashboard. You can use the following command to port forward.
34-
42+
3543
kubectl -n devtroncd port-forward svc/devtron-service 8000:80
44+
3645
The dashboard should be accesible on http://localhost:8000/
3746
{{- end }}
3847

3948
{{- if $.Values.installer.modules }}
40-
41-
3. You can watch the progress of Devtron microservices installation by the following command
49+
3. To track the progress of Devtron microservices installation, run the following command:
4250

4351
kubectl -n devtroncd get installers installer-devtron -o jsonpath='{.status.sync.status}'
52+
4453
{{- end }}
4554

charts/devtron/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
installer:
22
repo: "devtron-labs/devtron"
33
# For Kubernetes version < 1.16, set release: legacy. You won't be able to upgrade Devtron unless you upgrade the K8s version to 1.16 or above.
4-
release: "v0.4.4" #You can use a branch name or a release tag name as a release, for gitee as source only "main" is supported as of now
4+
release: "v0.4.5" #You can use a branch name or a release tag name as a release, for gitee as source only "main" is supported as of now
55
image: quay.io/devtron/inception
66
tag: acb623ff-185-7117
77
source: "github" # Available options are github and gitee
@@ -43,11 +43,11 @@ components:
4343
sentry: "false"
4444
sentryEnv: "PRODUCTION"
4545
applicationMetrics: "true"
46-
image: "quay.io/devtron/dashboard:e46df8f6-240-8703"
46+
image: "quay.io/devtron/dashboard:8c3c47c8-240-8803"
4747
imagePullPolicy: IfNotPresent
4848

4949
devtron:
50-
image: "quay.io/devtron/hyperion:38336f15-282-8704"
50+
image: "quay.io/devtron/hyperion:702ffd2c-280-8805"
5151
imagePullPolicy: IfNotPresent
5252
serviceMonitor:
5353
enabled: false
@@ -93,10 +93,10 @@ components:
9393
SCRIPT_LOCATION: "scripts/sql/"
9494
GIT_REPO_URL: "https://github.com/devtron-labs/devtron.git"
9595
DB_NAME: "orchestrator"
96-
GIT_HASH: "38336f1533c3e77fdd2988e43d4b1056e0e40e03"
96+
GIT_HASH: "702ffd2c7814e33f49e0dbbbebc6e18a6645e5d3"
9797
casbin:
9898
GIT_BRANCH: "main"
9999
SCRIPT_LOCATION: "scripts/casbin/"
100100
GIT_REPO_URL: "https://github.com/devtron-labs/devtron.git"
101101
DB_NAME: "casbin"
102-
GIT_HASH: "38336f1533c3e77fdd2988e43d4b1056e0e40e03"
102+
GIT_HASH: "702ffd2c7814e33f49e0dbbbebc6e18a6645e5d3"

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.4.4/manifests/installation-script
7+
url: https://raw.githubusercontent.com/devtron-labs/devtron/v0.4.5/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.4.4";
1+
LTAG="v0.4.5";
22
REPO_RAW_URL="https://raw.githubusercontent.com/devtron-labs/devtron/";
33

44
operatorSecret = kubectl get secret -n devtroncd devtron-operator-secret;

manifests/version.txt

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

manifests/yamls/dashboard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ spec:
231231
- name: envoy-config-volume
232232
mountPath: /etc/envoy-config/
233233
- name: dashboard
234-
image: "quay.io/devtron/dashboard:e46df8f6-240-8703"
234+
image: "quay.io/devtron/dashboard:8c3c47c8-240-8803"
235235
imagePullPolicy: IfNotPresent
236236
ports:
237237
- name: app

manifests/yamls/devtron.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ spec:
152152
serviceAccountName: devtron
153153
containers:
154154
- name: devtron
155-
image: "quay.io/devtron/devtron:38336f15-324-8702"
155+
image: "quay.io/devtron/devtron:702ffd2c-324-8804"
156156
imagePullPolicy: IfNotPresent
157157
ports:
158158
- name: devtron

manifests/yamls/migrator.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
- name: MIGRATE_TO_VERSION
4141
value: "0"
4242
- name: GIT_HASH
43-
value: 38336f1533c3e77fdd2988e43d4b1056e0e40e03
43+
value: 702ffd2c7814e33f49e0dbbbebc6e18a6645e5d3
4444
envFrom:
4545
- secretRef:
4646
name: postgresql-migrator
@@ -81,7 +81,7 @@ spec:
8181
- name: MIGRATE_TO_VERSION
8282
value: "0"
8383
- name: GIT_HASH
84-
value: 38336f1533c3e77fdd2988e43d4b1056e0e40e03
84+
value: 702ffd2c7814e33f49e0dbbbebc6e18a6645e5d3
8585
- name: GIT_BRANCH
8686
value: main
8787
envFrom:

0 commit comments

Comments
 (0)