mirror of
https://github.com/bitnami/charts.git
synced 2026-02-19 11:37:23 +08:00
[bitnami/node] add startup probe (#9977)
* feat: add startup probe Signed-off-by: garyng <garyng.zhongbo@gmail.com> * fix: add doc for path Signed-off-by: garyng <garyng.zhongbo@gmail.com> * fix: add missing metadata Signed-off-by: garyng <garyng.zhongbo@gmail.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
This commit is contained in:
@@ -28,4 +28,4 @@ name: node
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-node
|
||||
- http://nodejs.org/
|
||||
version: 17.0.21
|
||||
version: 17.1.0
|
||||
|
||||
@@ -79,26 +79,26 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
|
||||
### Node parameters
|
||||
|
||||
| Name | Description | Value |
|
||||
| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | --------------------------------- |
|
||||
| Name | Description | Value |
|
||||
| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | ----------------------------------- |
|
||||
| `installCommand` | Override default container install command (useful when using custom images or repositories) | `["/bin/bash","-ec","npm install"]` |
|
||||
| `command` | Override default container command (useful when using custom images) | `["/bin/bash","-ec","npm start"]` |
|
||||
| `args` | Override default container args (useful when using custom images) | `[]` |
|
||||
| `hostAliases` | Deployment pod host aliases | `[]` |
|
||||
| `extraEnvVars` | Extra environment variables to be set on Node container | `[]` |
|
||||
| `extraEnvVarsCM` | Name of existing ConfigMap containing extra environment variables | `""` |
|
||||
| `extraEnvVarsSecret` | Name of existing Secret containing extra environment variables | `""` |
|
||||
| `mongodb.enabled` | Whether to install or not the MongoDB® chart | `true` |
|
||||
| `mongodb.auth.enabled` | Whether to enable auth or not for the MongoDB® chart | `true` |
|
||||
| `mongodb.auth.rootPassword` | MongoDB® admin password | `""` |
|
||||
| `mongodb.auth.username` | MongoDB® custom user | `user` |
|
||||
| `mongodb.auth.database` | MongoDB® custom database | `test_db` |
|
||||
| `mongodb.auth.password` | MongoDB® custom password | `secret_password` |
|
||||
| `externaldb.enabled` | Enables or disables external database (ignored if `mongodb.enabled=true`) | `false` |
|
||||
| `externaldb.ssl` | Set to true if your external database has ssl enabled | `false` |
|
||||
| `externaldb.secretName` | Secret containing existing database credentials | `""` |
|
||||
| `externaldb.type` | Only if using Kubernetes Service Catalog you can specify the kind of broker used. Available options are osba|gce|aws | `osba` |
|
||||
| `externaldb.broker.serviceInstanceName` | If you provide the serviceInstanceName, the chart will create a ServiceBinding for that ServiceInstance | `""` |
|
||||
| `command` | Override default container command (useful when using custom images) | `["/bin/bash","-ec","npm start"]` |
|
||||
| `args` | Override default container args (useful when using custom images) | `[]` |
|
||||
| `hostAliases` | Deployment pod host aliases | `[]` |
|
||||
| `extraEnvVars` | Extra environment variables to be set on Node container | `[]` |
|
||||
| `extraEnvVarsCM` | Name of existing ConfigMap containing extra environment variables | `""` |
|
||||
| `extraEnvVarsSecret` | Name of existing Secret containing extra environment variables | `""` |
|
||||
| `mongodb.enabled` | Whether to install or not the MongoDB® chart | `true` |
|
||||
| `mongodb.auth.enabled` | Whether to enable auth or not for the MongoDB® chart | `true` |
|
||||
| `mongodb.auth.rootPassword` | MongoDB® admin password | `""` |
|
||||
| `mongodb.auth.username` | MongoDB® custom user | `user` |
|
||||
| `mongodb.auth.database` | MongoDB® custom database | `test_db` |
|
||||
| `mongodb.auth.password` | MongoDB® custom password | `secret_password` |
|
||||
| `externaldb.enabled` | Enables or disables external database (ignored if `mongodb.enabled=true`) | `false` |
|
||||
| `externaldb.ssl` | Set to true if your external database has ssl enabled | `false` |
|
||||
| `externaldb.secretName` | Secret containing existing database credentials | `""` |
|
||||
| `externaldb.type` | Only if using Kubernetes Service Catalog you can specify the kind of broker used. Available options are osba|gce|aws | `osba` |
|
||||
| `externaldb.broker.serviceInstanceName` | If you provide the serviceInstanceName, the chart will create a ServiceBinding for that ServiceInstance | `""` |
|
||||
|
||||
|
||||
### Node deployment parameters
|
||||
@@ -107,7 +107,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| --------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- |
|
||||
| `image.registry` | NodeJS image registry | `docker.io` |
|
||||
| `image.repository` | NodeJS image repository | `bitnami/node` |
|
||||
| `image.tag` | NodeJS image tag (immutable tags are recommended) | `16.13.2-debian-10-r7` |
|
||||
| `image.tag` | NodeJS image tag (immutable tags are recommended) | `16.15.0-debian-10-r0` |
|
||||
| `image.pullPolicy` | NodeJS image pull policy | `IfNotPresent` |
|
||||
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
|
||||
| `replicaCount` | Specify the number of replicas for the application | `1` |
|
||||
@@ -137,8 +137,16 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `3` |
|
||||
| `readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `3` |
|
||||
| `readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
|
||||
| `startupProbe.enabled` | Enable startupProbe | `false` |
|
||||
| `startupProbe.path` | Request path for startupProbe | `/` |
|
||||
| `startupProbe.initialDelaySeconds` | Initial delay seconds for startupProbe | `10` |
|
||||
| `startupProbe.periodSeconds` | Period seconds for startupProbe | `20` |
|
||||
| `startupProbe.timeoutSeconds` | Timeout seconds for startupProbe | `1` |
|
||||
| `startupProbe.failureThreshold` | Failure threshold for startupProbe | `6` |
|
||||
| `startupProbe.successThreshold` | Success threshold for startupProbe | `1` |
|
||||
| `customLivenessProbe` | Override default liveness probe | `{}` |
|
||||
| `customReadinessProbe` | Override default readiness probe | `{}` |
|
||||
| `customStartupProbe` | Custom startupProbe that overrides the default one | `{}` |
|
||||
| `priorityClassName` | Node priorityClassName | `""` |
|
||||
| `lifecycleHooks` | lifecycleHooks for the Node container to automate configuration before or after startup. | `{}` |
|
||||
| `sidecars` | Add sidecars to the Node pods | `[]` |
|
||||
@@ -164,7 +172,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ------------------------------ | --------------------------------------------------- | -------------------------------------------- |
|
||||
| `git.image.registry` | Git image registry | `docker.io` |
|
||||
| `git.image.repository` | Git image repository | `bitnami/git` |
|
||||
| `git.image.tag` | Git image tag (immutable tags are recommended) | `2.34.1-debian-10-r50` |
|
||||
| `git.image.tag` | Git image tag (immutable tags are recommended) | `2.36.0-debian-10-r8` |
|
||||
| `git.image.pullPolicy` | Git image pull policy | `IfNotPresent` |
|
||||
| `git.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
|
||||
| `git.extraVolumeMounts` | Add extra volume mounts for the Git container | `[]` |
|
||||
@@ -180,7 +188,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `volumePermissions.enabled` | Enable init container that changes volume permissions in the data directory | `false` |
|
||||
| `volumePermissions.image.registry` | Init container volume-permissions image registry | `docker.io` |
|
||||
| `volumePermissions.image.repository` | Init container volume-permissions image repository | `bitnami/bitnami-shell` |
|
||||
| `volumePermissions.image.tag` | Init container volume-permissions image tag (immutable tags are recommended) | `10-debian-10-r312` |
|
||||
| `volumePermissions.image.tag` | Init container volume-permissions image tag (immutable tags are recommended) | `10-debian-10-r408` |
|
||||
| `volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` |
|
||||
| `volumePermissions.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
|
||||
| `volumePermissions.resources.limits` | The resources limits for the container | `{}` |
|
||||
|
||||
@@ -214,6 +214,19 @@ spec:
|
||||
{{- else if .Values.customReadinessProbe }}
|
||||
readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customReadinessProbe "context" $) | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- if .Values.startupProbe.enabled }}
|
||||
startupProbe:
|
||||
httpGet:
|
||||
path: {{ .Values.startupProbe.path }}
|
||||
port: http
|
||||
initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }}
|
||||
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
|
||||
timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }}
|
||||
successThreshold: {{ .Values.startupProbe.successThreshold }}
|
||||
failureThreshold: {{ .Values.startupProbe.failureThreshold }}
|
||||
{{- else if .Values.customStartupProbe }}
|
||||
startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customStartupProbe "context" $) | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- if .Values.resources }}
|
||||
resources: {{- toYaml .Values.resources | nindent 12 }}
|
||||
{{- end }}
|
||||
|
||||
@@ -234,12 +234,33 @@ readinessProbe:
|
||||
timeoutSeconds: 3
|
||||
failureThreshold: 3
|
||||
successThreshold: 1
|
||||
## Configure extra options for startup probe
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-startup-readiness-probes/#configure-probes
|
||||
## @param startupProbe.enabled Enable startupProbe
|
||||
## @param startupProbe.path Request path for startupProbe
|
||||
## @param startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
|
||||
## @param startupProbe.periodSeconds Period seconds for startupProbe
|
||||
## @param startupProbe.timeoutSeconds Timeout seconds for startupProbe
|
||||
## @param startupProbe.failureThreshold Failure threshold for startupProbe
|
||||
## @param startupProbe.successThreshold Success threshold for startupProbe
|
||||
##
|
||||
startupProbe:
|
||||
enabled: false
|
||||
path: '/'
|
||||
initialDelaySeconds: 10
|
||||
timeoutSeconds: 1
|
||||
periodSeconds: 20
|
||||
failureThreshold: 6
|
||||
successThreshold: 1
|
||||
## @param customLivenessProbe Override default liveness probe
|
||||
##
|
||||
customLivenessProbe: {}
|
||||
## @param customReadinessProbe Override default readiness probe
|
||||
##
|
||||
customReadinessProbe: {}
|
||||
## @param customStartupProbe Custom startupProbe that overrides the default one
|
||||
##
|
||||
customStartupProbe: {}
|
||||
## @param priorityClassName Node priorityClassName
|
||||
## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user