# io.k8s.api.apps.v1.DaemonSetUpdateStrategy

From **Kubernetes**.

DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.

- Type: `object`

## Properties

### `rollingUpdate`

- Required: false
Rolling update config params. Present only if type = "RollingUpdate".

### `type`

- Required: false
- Type: `string`

Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.

## JSON Schema

```json
{"description":"DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.","properties":{"rollingUpdate":{"allOf":[{"$ref":"#/components/schemas/io.k8s.api.apps.v1.RollingUpdateDaemonSet"}],"description":"Rolling update config params. Present only if type = \"RollingUpdate\"."},"type":{"description":"Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.","type":"string"}},"type":"object"}
```
