Skip to content

Commit 77bac4e

Browse files
chore(nx-cloud): change probe defaults
1 parent 95a0b73 commit 77bac4e

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

charts/nx-cloud/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Below is a summary table of configurable values from values.yaml.
8686
| fileServer.deployment.initContainers | list | [] | Init containers for file server. |
8787
| fileServer.deployment.livenessProbe | object | httpGet on /file/uptime-check:5000 | Liveness probe configuration for file server container. |
8888
| fileServer.deployment.startupProbe | object | httpGet on /file/uptime-check:5000 | Startup probe configuration for file server container. |
89-
| fileServer.deployment.readinessProbe | object | httpGet on /file/uptime-check:5000 | Readiness probe configuration for file server container. |
89+
| fileServer.deployment.readinessProbe | object | {} | Readiness probe configuration for file server container. |
9090
| fileServer.pvc.name | string | nx-cloud-file-server | PVC name for file server storage. |
9191
| fileServer.pvc.annotations | object | {} | PVC annotations. |
9292
| fileServer.pvc.labels | object | {} | PVC labels. |
@@ -160,7 +160,7 @@ Below is a summary table of configurable values from values.yaml.
160160
| frontend.deployment.volumeMounts | list | [] | Additional volume mounts. |
161161
| frontend.deployment.extraContainers | list | [] | Extra sidecars for frontend only. |
162162
| frontend.deployment.initContainers | list | [] | Init containers for frontend. |
163-
| frontend.deployment.startupProbe | object | httpGet on /healthz:4202 | Startup probe configuration for frontend container. |
163+
| frontend.deployment.startupProbe | object | {} | Startup probe configuration for frontend container. |
164164
| frontend.deployment.livenessProbe | object | httpGet on /healthz:4202 | Liveness probe configuration for frontend container. |
165165
| frontend.deployment.readinessProbe | object | httpGet on /readyz:4202 | Readiness probe configuration for frontend container. |
166166
| frontend.serviceAccount.create | bool | true | Whether to create a ServiceAccount for frontend. |
@@ -222,7 +222,7 @@ Below is a summary table of configurable values from values.yaml.
222222
| api.deployment.initContainers | list | [] | Init containers for API. |
223223
| api.deployment.startupProbe | object | httpGet on /nx-cloud/uptime-check:4203 | Startup probe configuration for API container. |
224224
| api.deployment.livenessProbe | object | httpGet on /nx-cloud/uptime-check:4203 | Liveness probe configuration for API container. |
225-
| api.deployment.readinessProbe | object | httpGet on /nx-cloud/uptime-check:4203 | Readiness probe configuration for API container. |
225+
| api.deployment.readinessProbe | object | {} | Readiness probe configuration for API container. |
226226
| api.serviceAccount.create | bool | true | Whether to create a ServiceAccount for API. |
227227
| api.serviceAccount.name | string | nx-cloud-nx-api | ServiceAccount name for API. |
228228
| api.serviceAccount.annotations | object | {} | ServiceAccount annotations for API. |

charts/nx-cloud/values.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -339,13 +339,7 @@ api:
339339
port: 4203
340340
initialDelaySeconds: 30
341341

342-
readinessProbe:
343-
httpGet:
344-
path: /readyz
345-
port: 4203
346-
initialDelaySeconds: 10
347-
periodSeconds: 30
348-
timeoutSeconds: 15
342+
readinessProbe: {}
349343

350344
serviceAccount:
351345
create: true

0 commit comments

Comments
 (0)