You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/devtron/templates/NOTES.txt
+35-1Lines changed: 35 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,4 +7,38 @@
7
7
2. You can watch the progress of Devtron microservices installation by the following command
8
8
9
9
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.
0 commit comments