# io.k8s.api.scheduling.v1beta1.CompositeDisruptionMode

From **Kubernetes**.

CompositeDisruptionMode defines how individual entities within a composite pod group can be disrupted. Exactly one mode must be set.

- Type: `object`

## Properties

### `all`

- Required: false
all specifies that all children groups can only be disrupted together.

### `single`

- Required: false
single specifies that children groups can be disrupted independently from each other.

## JSON Schema

```json
{"description":"CompositeDisruptionMode defines how individual entities within a composite pod group can be disrupted. Exactly one mode must be set.","properties":{"all":{"allOf":[{"$ref":"#/components/schemas/io.k8s.api.scheduling.v1beta1.AllCompositeDisruptionMode"}],"description":"all specifies that all children groups can only be disrupted together."},"single":{"allOf":[{"$ref":"#/components/schemas/io.k8s.api.scheduling.v1beta1.SingleCompositeDisruptionMode"}],"description":"single specifies that children groups can be disrupted independently from each other."}},"type":"object","x-kubernetes-unions":[{"fields-to-discriminateBy":{"all":"All","single":"Single"}}]}
```
