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