Skip to content

Commit

Permalink
docs: add restartPolicy and updateStrategy
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyvgy committed Nov 15, 2024
1 parent 6a0a7a4 commit 00fb34e
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions charts/instant-chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,21 @@ See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall/) for command docu

### Deployment parameters

| Name | Description | Default |
| ------------------ | ---------------------------------------------------------------------------------------------------------------- | ------- |
| `replicas` | Number of pod replicas. | `1` |
| `containers` | A list of containers belonging to the pod. | `[]` |
| `initContainers` | Additional initialization containers. | `[]` |
| `volumes` | A list of volumes to be added to the pod. PVC will be created if `volumes.persistentVolumeClaim.requests` found. | `[]` |
| `imagePullSecrets` | Reference to one or more secrets to be used when pulling images. | `[]` |
| `registryLogin` | Create a Secret to provide the registry credentials for pulling private images. | `[]` |
| `securityContext` | Define privilege and access control settings for a Pod or Container. | `{}` |
| `dnsConfig` | DNS configuration for the pod. | `{}` |
| `hostAliases` | Host aliases for the pod. | `[]` |
| `overhead` | Overhead for the pod. | `{}` |
| `readinessGates` | Readiness gates for the pod. | `[]` |
| Name | Description | Default |
| ------------------ | ---------------------------------------------------------------------------------------------------------------- | ----------- |
| `replicas` | Number of pod replicas. | `1` |
| `containers` | A list of containers belonging to the pod. | `[]` |
| `initContainers` | Additional initialization containers. | `[]` |
| `volumes` | A list of volumes to be added to the pod. PVC will be created if `volumes.persistentVolumeClaim.requests` found. | `[]` |
| `imagePullSecrets` | Reference to one or more secrets to be used when pulling images. | `[]` |
| `registryLogin` | Create a Secret to provide the registry credentials for pulling private images. | `[]` |
| `securityContext` | Define privilege and access control settings for a Pod or Container. | `{}` |
| `dnsConfig` | DNS configuration for the pod. | `{}` |
| `hostAliases` | Host aliases for the pod. | `[]` |
| `overhead` | Overhead for the pod. | `{}` |
| `readinessGates` | Readiness gates for the pod. | `[]` |
| `restartPolicy` | Restart policy for all containers within the pod . | `OnFailure` |
| `updateStrategy` | Defines the update strategy configuration for Deployment, StatefulSet, DaemonSet. | |

### Configuration parameters

Expand Down

0 comments on commit 00fb34e

Please sign in to comment.