Skip to content

Commit 3378c55

Browse files
ajaydevtron123ajay0prakarsh-dt
authored
[enhancemennt] Add Dashboard URL discover text in Helm chart (#1691)
* update the notes.txt file for dashboard url * update notes.txt file for dashboard url * modified notes.txt file * modified the notes.txt * Update NOTES.txt * Update NOTES.txt * Update test_values.yaml * Update NOTES.txt Co-authored-by: 123ajay0 <[email protected]> Co-authored-by: Prakarsh <[email protected]>
1 parent bb338f9 commit 3378c55

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

charts/devtron/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords:
1010
- argocd
1111
- Hyperion
1212
engine: gotpl
13-
version: 0.22.5
13+
version: 0.22.6
1414
sources:
1515
- https://github.com/devtron-labs/charts
1616
maintainers:

charts/devtron/templates/NOTES.txt

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,38 @@
77
2. You can watch the progress of Devtron microservices installation by the following command
88

99
kubectl -n devtroncd get installers installer-devtron -o jsonpath='{.status.sync.status}'
10-
{{- end }}
10+
{{- end }}
11+
12+
13+
{{- if $.Values.components.devtron.ingress.enabled }}
14+
15+
3. 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
16+
17+
{{- else if eq $.Values.components.devtron.service.type "LoadBalancer" }}
18+
19+
3. You can get url of devtron dashboard by the following command
20+
21+
kubectl get svc -n devtroncd devtron-service -o jsonpath='{.status.loadBalancer.ingress}'
22+
{{- else if eq $.Values.components.devtron.service.type "NodePort" }}
23+
24+
3. You can get the devtron dashboard by following the steps mentioned below
25+
26+
1. export nodeport=$(kubectl get svc -n devtroncd devtron-service -o jsonpath="{.spec.ports[0].nodePort}")
27+
28+
2. Your devtron dashboard is available on http://HOST_IP:$nodeport/dashboard
29+
30+
Make sure that your security settings allow incoming connection to your Host machine on the nodeport mentioned.
31+
32+
33+
{{- else if eq $.Values.components.devtron.service.type "ClusterIP" }}
34+
35+
3. You can get the devtron dashboard by the following command
36+
37+
kubectl get svc -n devtroncd devtron-service
38+
39+
You can port-forward devtron-service in namespace devtroncd to access devtron dashboard. You can use the following command to port forward.
40+
41+
kubectl -n devtroncd port-forward svc/devtron-service 8000:80
42+
The dashboard should be accesible on http://localhost:8000/
43+
{{- end }}
44+

scripts/devtron-reference-helm-charts/reference-chart_3-10-0/test_values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,4 +346,4 @@ tolerations: []
346346
# value: "value"
347347
# effect: "NoSchedule|PreferNoSchedule|NoExecute(1.6 only)"
348348

349-
appMetrics: false
349+
appMetrics: false

0 commit comments

Comments
 (0)