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
The install commands initiates Devtron-operator which spins up all the Devtron micro-services one by one in about 20 mins. You can use the above command to check the status of the installation if the installation is still in progress, it will print `Downloaded`. When the installation is complete, it prints `Applied`.
73
+
Meanwhile, you can check logs of the installer by executing the following command:
The install commands initiates Devtron-operator which spins up all the Devtron micro-services one by one in about 20 mins. You can use the above command to check the status of the installation if the installation is still in progress, it will print `Downloaded`. When the installation is complete, it prints `Applied`.
66
+
Meanwhile, you can check logs of the installer by executing the following command:
The install commands initiates Devtron-operator which spins up all the Devtron micro-services one by one in about 20 mins. You can use the above command to check the status of the installation if the installation is still in progress, it will print `Downloaded`. When the installation is complete, it prints `Applied`.
38
+
Meanwhile, you can check logs of the installer by executing the following command:
38
39
40
+
```bash
41
+
kubectl logs -f -l app=inception -n devtroncd
42
+
```
39
43
## Access Devtron dashboard
40
44
41
45
If you did not provide a **BASE\_URL** during install or have used the default installation, Devtron creates a loadbalancer for you on its own. Use the following command to get the dashboard url.
Copy file name to clipboardExpand all lines: docs/user-guide/creating-application/deployment-template/rollout-deployment.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,9 @@ LivenessProbe:
106
106
successThreshold: 1
107
107
timeoutSeconds: 5
108
108
failureThreshold: 3
109
+
command:
110
+
- python
111
+
- /etc/app/healthcheck.py
109
112
httpHeaders:
110
113
- name: Custom-Header
111
114
value: abc
@@ -121,6 +124,7 @@ LivenessProbe:
121
124
| `successThreshold` | It defines the number of successes required before a given container is said to fulfil the liveness probe. |
122
125
| `timeoutSeconds` | It defines the time for checking timeout. |
123
126
| `failureThreshold` | It defines the maximum number of failures that are acceptable before a given container is not considered as live. |
127
+
| `command` | The mentioned command is executed to perform the livenessProbe. If the command returns a non-zero value, it's equivalent to a failed probe. |
124
128
| `httpHeaders` | Custom headers to set in the request. HTTP allows repeated headers,You can override the default headers by defining .httpHeaders for the probe. |
125
129
| `scheme` | Scheme to use for connecting to the host (HTTP or HTTPS). Defaults to HTTP.
126
130
| `tcp` | The kubelet will attempt to open a socket to your container on the specified port. If it can establish a connection, the container is considered healthy. |
@@ -161,6 +165,9 @@ ReadinessProbe:
161
165
successThreshold: 1
162
166
timeoutSeconds: 5
163
167
failureThreshold: 3
168
+
command:
169
+
- python
170
+
- /etc/app/healthcheck.py
164
171
httpHeaders:
165
172
- name: Custom-Header
166
173
value: abc
@@ -176,6 +183,7 @@ ReadinessProbe:
176
183
| `successThreshold` | It defines the number of successes required before a given container is said to fulfill the readiness probe. |
177
184
| `timeoutSeconds` | It defines the time for checking timeout. |
178
185
| `failureThreshold` | It defines the maximum number of failures that are acceptable before a given container is not considered as ready. |
186
+
| `command` | The mentioned command is executed to perform the readinessProbe. If the command returns a non-zero value, it's equivalent to a failed probe. |
179
187
| `httpHeaders` | Custom headers to set in the request. HTTP allows repeated headers,You can override the default headers by defining .httpHeaders for the probe. |
180
188
| `scheme` | Scheme to use for connecting to the host (HTTP or HTTPS). Defaults to HTTP.
181
189
| `tcp` | The kubelet will attempt to open a socket to your container on the specified port. If it can establish a connection, the container is considered healthy. |
@@ -241,9 +249,11 @@ ingress:
241
249
annotations: {}
242
250
hosts:
243
251
- host: example1.com
252
+
pathType: "ImplementationSpecific"
244
253
paths:
245
254
- /example
246
255
- host: example2.com
256
+
pathType: "ImplementationSpecific"
247
257
paths:
248
258
- /example2
249
259
- /example2/healthz
@@ -266,8 +276,9 @@ ingress:
266
276
| :--- | :--- |
267
277
| `enabled` | Enable or disable ingress |
268
278
| `annotations` | To configure some options depending on the Ingress controller |
269
-
| `path` | Path name |
270
279
| `host` | Host name |
280
+
| `pathType` | Path in an Ingress is required to have a corresponding path type. Supported path types are `ImplementationSpecific`, `Exact` and `Prefix`. |
281
+
| `path` | Path name |
271
282
| `tls` | It contains security details |
272
283
273
284
### Ingress Internal
@@ -282,9 +293,11 @@ ingressInternal:
282
293
annotations: {}
283
294
hosts:
284
295
- host: example1.com
296
+
pathType: "ImplementationSpecific"
285
297
paths:
286
298
- /example
287
299
- host: example2.com
300
+
pathType: "ImplementationSpecific"
288
301
paths:
289
302
- /example2
290
303
- /example2/healthz
@@ -295,8 +308,10 @@ ingressInternal:
295
308
| :--- | :--- |
296
309
| `enabled` | Enable or disable ingress |
297
310
| `annotations` | To configure some options depending on the Ingress controller |
298
-
| `path` | Path name |
299
311
| `host` | Host name |
312
+
| `pathType` | Path in an Ingress is required to have a corresponding path type. Supported path types are `ImplementationSpecific`, `Exact` and `Prefix`. |
313
+
| `path` | Path name |
314
+
| `pathType` | Supported path types are `ImplementationSpecific`, `Exact` and `Prefix`.|
0 commit comments