Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 938 Bytes

minreadyseconds.md

File metadata and controls

33 lines (20 loc) · 938 Bytes

minReadySeconds

Feature state: :material-tag-outline: 1.0.0

minReadySeconds value in Kubedeploy can be used to define custom minReadySeconds for deployments and statefulsets.

!!! note

By default `minReadySeconds` in Kubedeploy is set to 10 seconds.

!!! example "custom minReadySeconds"

```yaml title="values.yaml" linenums="1" hl_lines="6"
nameOverride: my-app
image:
  repository: nginx
  tag: latest

minReadySeconds: 60
```

```bash title="Deploy command"
helm install webapp sysbee/kubedeploy -f values.yaml
```

!!! note

For more complete example of configuring minReadySeconds with other configurable values, please see the **Best practices** linked page.

See also: